父级设置的重力设置是否会覆盖其子级设置的所有layout_gravity设置?好像我试试的时候。有没有办法绕过这种行为?我想使用具有全局引力的LinearLayout,但我希望一个元素始终与底部对齐。
我不想要一个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>