如何获得fill_parent的四分之三

时间:2011-07-25 22:12:35

标签: android xml android-layout

我已经知道如果你有n个高度相等的元素= fill_parent,它们会得到相同的大小,所以它们会填充所有元素。

但我希望有一个组件,例如屏幕高度的1/4,另一个组件是3/4。怎么办?

1 个答案:

答案 0 :(得分:2)

您应该使用linear layout来执行此操作

使用layout_weight来操纵填充率。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView android:id="@+id/component1" android:text="hello"
        android:layout_width="fill_parent" android:layout_weight="0.25" />

    <TextView android:id="@+id/component2" android:text="world"
        android:layout_width="fill_parent" android:layout_weight="0.75" />

</LinearLayout>

只要比率正确,您也可以将值分别设为1.0和3.0。