我有 3 个布局,第一个我以编程方式添加内容,第二个我以编程方式添加内容并将其放在底部,第三个我放置片段。问题出在底部布局中,如果我将高度设置40dp
为显示的片段。但是如果我将它设置wrap_content
为不显示片段...
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<RelativeLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
<RelativeLayout
android:id="@+id/acts"
android:layout_width="match_parent"
//android:layout_height="wrap_content" <-id/frame not show
android:layout_height="40dp" <-id/frame show
android:layout_alignParentBottom="true" />
<FrameLayout
android:id="@+id/frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tabs"
android:layout_above="@id/acts" />
</RelativeLayout>