TextView填充了80%的屏幕

时间:2010-10-13 17:05:59

标签: android layout

我在Android上非常新。

我想将一个TextView放在一个填充了LinearLayout高度80%的LinearLayout中。

我该怎么做?或如何分配Widht和Height的百分比?

感谢。

1 个答案:

答案 0 :(得分:3)

这样的布局会起作用。关键是layout_weight属性。 Android的文档对该属性不是很好。请注意,第二个TextView(可能是任何东西)是必需的,否则第一个TextView将占用整个空间。

<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:layout_weight="0.8"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:background="#FFC300"
    />
    <TextView android:layout_weight="0.2"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="second text box"
     />
</LinearLayout>