画面に4つのボタンを配置しようとしています。上に2つ、下に牽引。このコードは、私が望むようにトップボタンを提供します。ただし、layout_alignParentTop="true" を layout_alignParentBottom="true" に変更すると、ボタンは一番上に表示されたままになります。予想通り、彼らは底に移動しません。何か案は?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout02"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentTop="true">
<Button
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" android:text="test">
</Button>
<Button
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="test">
</Button>
</LinearLayout>