親によって設定された重力設定は、その子によって設定されたすべての layout_gravity 設定をオーバーライドしますか? やってみるとそうらしい。この動作を回避する方法はありますか? グローバルな重力で LinearLayout を使用したいのですが、常に 1 つの要素を下に揃えたいです。
RelativeLayout は必要ありません。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal">
<TextView
android:id="@+id/textview_error_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button_next"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="@string/button_next" />
</LinearLayout>