ボタンを中央に揃えてオフセットさせたいそのようなアプローチを試しましたAndroidで中央からのビューをオフセットする方法はありますか?しかし、それは機能しません。例えば:
<View
android:id="@+id/fakeView"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_centerInParent="true"
android:paddingTop="80dp"
android:background="#FFAABB" />
まだ中心にとどまる
このように達成する方法はありますか?
アップデート:
私の完全なレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageButton
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:layout_marginLeft="100dp"
/>
</RelativeLayout>