背景に対するImageButton/Button / ImageViewの位置/レイアウトを修正するにはどうすればよいですか?
私はこのようなことを試しました:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_img"
>
<ImageButton
android:id="@+id/btn1"
android:layout_width="52dip"
android:layout_height="52dip"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="87dip"
android:background="@drawable/btn1"
/>
</RelativeLayout>
表示解像度を変更すると、background_imgは新しい領域をカバーするように引き伸ばされますが、ImageButtonはストリートにならず、下マージンを比例的に尊重しません。