线性布局内的两个框架布局

时间:2014-11-07 18:24:49

标签: android android-linearlayout android-framelayout

这是我现在的代码:

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

    <FrameLayout
        android:id="@+id/tablet_locations_fragment_fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <FrameLayout
        android:id="@+id/tablet_locations_fragment_locations_fragment_list_container"
        android:layout_width="match_parent"
        android:layout_height="90dp" />

</LinearLayout>

我认为我很清楚我希望底部框架布局为90dp高和高,以占据剩余的空间,但目前,上部框架布局占据了所有的屏幕高度。我怎样才能解决这个问题?我试着把layout_height =&#34; wrap_content&#34;对于上部框架布局,但它没有改变任何东西。

2 个答案:

答案 0 :(得分:10)

layout_weight是你的朋友

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@+id/tablet_locations_fragment_fragment_container"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:layout_height="0dp" />

    <FrameLayout
        android:id="@+id/tablet_locations_fragment_locations_fragment_list_container"
        android:layout_width="match_parent"
        android:layout_height="90dp" />

</LinearLayout>

答案 1 :(得分:0)

WRITE_EXTERNAL_STORAGE