我有两个片段。两者都包含一些按钮和列表视图。我将这两个片段垂直显示在单独的容器中。但是如果列表视图包含更多项目,则下面的片段会关闭。我们如何显示两个固定大小的片段?即屏幕应分为两个。
答案 0 :(得分:0)
在此示例中,顶部容器将覆盖屏幕的70%,底部覆盖30%。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100">
<FrameLayout android:id="@+id/container_top"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="70"/>
<FrameLayout android:id="@+id/container_bottom"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30"/>
</LinearLayout>