我写了这个XML代码;
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="20"
>
<TableRow
android:layout_height="fill_parent"
android:layout_weight="10"
android:layout_width="fill_parent">`enter code here`</TableRow>
<TableRow
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="9">
<Gallery
android:layout_height="fill_parent"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_weight="1">
</Gallery>
</TableRow>
<TableRow
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
>
<Button
android:id="@+id/Button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1"
>
</Button>
<Button
android:id="@+id/Button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
</TableRow>
此代码显示为我想要的但是当我运行代码按钮时,大小随图库中的图像大小而变化。如何相互独立地编写XML代码(图库和按钮)。 谢谢你的帮助
答案 0 :(得分:1)
我建议您使用2个LinearLayouts,一个垂直的LinearLayout来保存图库和一个水平的LinearLayout,它还包含各种按钮。
代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<Gallery
android:layout_height="fill_parent"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_weight="1">
</Gallery>
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
<Button
android:id="@+id/Button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
</LinearLayout>
</LinearLayout>