我目前有这个布局文件,用于选项卡内的片段。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:orientation="vertical" >
<TableRow
android:paddingTop="10dip"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:paddingBottom="3dip"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/Btn_Show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2" />
</TableRow>
<TableRow
android:paddingTop="10dip"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:paddingBottom="3dip"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 3" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 4" />
</TableRow>
</LinearLayout>
</FrameLayout>
按钮当前垂直显示在中心,但我也希望它们水平显示在中心,如下图所示。
我尝试过使用各种方式 android:layout_gravity="center_vertical | Horizontal" 但似乎不起作用
提前致谢。