Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an xml that have an imageView in it.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/blockingLayer"
    android:layout_width="880px"
    android:layout_height="600px">
        <ImageView 
            android:layout_width="110px"
            android:layout_height="60px"
            android:id="@+id/fish_image_view"
            android:visibility="visible"
            android:layout_marginLeft="0px"
            android:layout_marginTop="350px"
            />
</RelativeLayout> 

In code i am getting this imageView and running the translateAnimation on it from X1 = 10 to x2 = ScreenWidth , Y1 & Y2 = 350px. This animation is working fine on android version 2.2 but when i run this on OS 2.3 / 4.0 ImageView will cuttoff and disappear on some points on screen during translate animation.

I could not understand what is going wrong with this. Response will be appreciated.

share|improve this question
Try to work on your Accept rate.. Accept some answers if they have helped you. It is a main factor here, to receive valuable answers. – Andro Selva Jul 13 '12 at 7:42
1  
I have improved it – Asad Iqbal Jul 13 '12 at 10:41

1 Answer

Dont use "px". Change it to "dip"

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/blockingLayer"
    android:layout_width="880dip"
    android:layout_height="600dip">
        <ImageView 
            android:layout_width="110dip"
            android:layout_height="60dip"
            android:id="@+id/fish_image_view"
            android:visibility="visible"
            android:layout_marginLeft="0dip"
            android:layout_marginTop="350dip"
            />
</RelativeLayout> 

Source from here, Difference of px, dp, dip and sp in Android?

px Pixels - corresponds to actual pixels on the screen.

dp Density-independent Pixels - an abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi screen, so one dp is one pixel on a 160 dpi screen. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion. Note: The compiler accepts both "dip" and "dp", though "dp" is more consistent with "sp".

share|improve this answer
I think, this issue is not related with screen density as i check this on different devices running Os 2.2 but it fail on other versions of OS. – Asad Iqbal Jul 13 '12 at 7:48
I think you don't get it. maybe your 2.2 devices are of same density and the other os device is of bigger density. And you experience the problem with that device alone. – Andro Selva Jul 13 '12 at 7:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.