1
似乎LinearLayout中的TextView強制LinearLayout變大。我試圖將我的屏幕頂端分成50%和底部50%,底部50%分成3部分。所以我做了我的體重3(頂部),然後是1,1,1(底部),總共爲6個。如何防止TextView伸出它的父LinearLayout?
下面是它的樣子。 http://i.imgur.com/3FJSW.jpg
只要我在第一個LinearLayout中取出TextView,分割就是合適的。當我把TextView放在頂層的LinearLayout中時,頂層的LinerLayout會比TextView的數量更大。
這裏是我的代碼:
<?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">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#cccccc"
android:layout_weight="3">
<TextView
android:text="@string/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#aa0000"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#00aa00"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#0000cc"
android:layout_weight="1">
</LinearLayout></LinearLayout>
我認爲,如果您在textview上的權重爲1,那麼您會強制將linearlayout設置爲textview高度大小的3倍。嘗試刪除textview的重量。 – Sephy 2010-07-24 17:14:18