I have Checkbox and I setted paddingLeft=”150dp” for a text, when I use phone with resolution 480×854 for example neo v, the checkbox is over text. layout it’s fine for other resolutions.
In res I have only “layout”.
What is wrong? Why only for 480×854
Don’t use dp to position your views, as you are bound to have problems when switching devices. Instead use a RelativeLayout and its attributes, like android:layout_toLeftOf, android:layout_centerHorizontal and so on.
You can read more about RelativeLayouts here: http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html