其他分享
首页 > 其他分享> > android – 线性布局内的两个框架布局

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

作者:互联网

这是我现在的代码:

<?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 =“wrap_content”用于上部框架布局,但它没有改变任何东西.

解决方法:

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>

标签:android,android-linearlayout,android-framelayout
来源: https://codeday.me/bug/20190717/1490290.html