我有一个上下文菜单,其中包含ListView
中的项目,全部包含在ASL / Design lib的BottomSheet
中。活动的根视图是CoordinatorLayout
,由BottomSheetBehavior
指定。
我遇到的问题是,如果list-view-container的高度为ListView
或者{R.id.problematic_list
,则wrap_content
(match_parent
下方)仅呈现第一个列表项{1}}(下面R.id.list_container
)。如果此列表容器具有慷慨的高度设置(例如:400dp),那么完整列表将按预期呈现;以及额外的空间(因为高度超额指定)。 ListView
是动态填充的,因此我无法在layout-xml文件中设置静态高度。
是否有简单的布局,属性或编程方法,允许ListView在不过度分配垂直空间的情况下进行填充和渲染?
我的初始配置如[{3}}
所述<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fitsSystemWindows="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primaryBlue"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"_elevation" />
<!-- main activity content -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
/>
</RelativeLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="true"
android:layout_gravity="bottom"
app:behavior_hideable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<!-- layout_height= 300dp / wrap_content -->
<LinearLayout
android:id="@+id/list_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/problematic_list"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
true
有自己的一套身高要求才能完全呈现。我从层次结构中删除了它,列表在所有可用空间中呈现。
感谢@CoderP提示