我的要求是在 LinearLayout 中实现这一点。它只有一个子视图。在水平方向中,如果设置了 layout_gravity,则按钮需要位于水平中心。我的布局 xml 是
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="200dp"
android:background="#ffff00"
android:layout_width="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Button" />
</LinearLayout>
但结果如下图
我期待的是,当 layout_gravity 设置为 center_horizontal 时,按钮中心为水平。为什么这不起作用