我尝试使用支持库的BottomSheetDialogFragment来复制点击“分享”按钮时显示的标准工作表(见下文)。我如何实现类似的布局,其中顶部有一个标题,中心可以独立滚动内容,但底部锚定视图的按钮始终保持在顶部。
答案 0 :(得分:0)
您需要为bottomSheet构建自定义布局,例如share_bottom.xml。在那个布局中你可以
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottomSheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/bottom_sheet_behavior"
app:behavior_hideable="true"
app:behavior_peekHeight="200dp">
<TextView
android:layout_width="match_parent"
android:text="header"
android:layout_height="wrap_content"/>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"/>
<LinearLayout
android:layout_weight="0"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
然后将其包含在片段布局的底部:
之后,您可以控制此工作表的可见性
//retrieve the bottomsheet
bottomSheet = (LinearLayout) findViewById(R.id.bottomSheet);
//get the behaviour controller
bsb = BottomSheetBehavior.from(bottomSheet);
//hide the sheet
bsb.setState(BottomSheetBehavior.STATE_HIDDEN);
//showthe sheet
bsb.setState(BottomSheetBehavior.STATE_EXPANDED);
答案 1 :(得分:0)
我也有同样的问题。我解决了使用这些步骤。
这只是一种解决方法。基本上我所做的是复制持久性底部表格,就像模态表一样。