行占据整个屏幕

时间:2011-08-09 15:59:36

标签: android xml android-layout android-linearlayout android-button

我有一个大的LinearLayout(垂直)(外表)和三个小的线性布局(水平)(每行一个)。我希望内部的linearlayouts占据整个空间。目前,他们只占用所需的空间。
这是我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background">


<LinearLayout android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content">
    <ImageButton android:src="@drawable/Tag"
                 android:onClick="tagKillHandle"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"/>
    <ImageButton android:src="@drawable/seekills" 
                 android:layout_width="wrap_content" 
                 android:onClick="seeKillsHandle" 
                 android:layout_height="wrap_content"/>       
</LinearLayout>

<LinearLayout android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content">
    <ImageButton android:src="@drawable/track"
                 android:onClick="trackMeHandle"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"/>
    <ImageButton android:src="@drawable/taste"
                 android:onClick="tasteHandle"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"/>           
</LinearLayout>

<LinearLayout android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content">
    <ImageButton android:src="@drawable/calls"
                 android:onClick="duckCallsHandle"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"/>
    <ImageButton android:src="@drawable/faq"
                 android:onClick="faqHandle"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"/>           
</LinearLayout>


</LinearLayout>

我希望这些行占据整个屏幕。我怎样才能做到这一点?有什么想法吗?

1 个答案:

答案 0 :(得分:2)

添加

android:layout_weight="1.0"

在三个内部布局中的每一个。