我坚持一些可能很简单的事情,但我似乎无法弄明白。我正在寻找的一个例子是一个带有4个按钮的屏幕。一个采用整个左上象限,第二个采取整个右上象限,第三个采取整个左下象限,第四个采取整个右下象限。最终结果是4个按钮填满了整个屏幕。
我似乎能够同样拉伸物体来填充屏幕的宽度,或者我可以伸展物体来填充高度。我似乎无法弄清楚的是如何同时拉伸宽度和高度。
对此的任何帮助将不胜感激。
答案 0 :(得分:3)
我想你正试图用一个LinearLayout做到这一点。我可能只使用两个LinearLayouts来处理它。类似的东西:
<?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" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1">
<Button
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1" />
<Button
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1">
<Button
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1" />
<Button
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
刚测试过,它绝对有效。 LINT表示嵌套权重不利于性能,但它确实具有正确的布局。