3

我正在尝试使用支持库的 BottomSheetDialogFragment 来复制当您点击“共享”按钮时显示的标准工作表(见下文)。我将如何实现类似的布局,顶部有一个标题,中心有独立可滚动的内容,但底部锚定视图的按钮始终位于顶部。

在此处输入图像描述

4

2 回答 2

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);
于 2016-06-07T15:40:00.190 回答
0

我也有同样的问题。我使用这些步骤解决了。

  • 将 FrameLayout 作为您的根布局。
  • 包括要作为第二个孩子锚定的视图,第一个孩子应该包含活动的所有内容。
  • 将第二个孩子设置为在底部工作表展开时可见,并在底部工作表折叠时使其不可见。
  • 可以通过在底部表中使用滚动视图或嵌套滚动视图来实现底部表内的独立滚动内容。
  • 要使背景变暗,请参阅此链接

这只是一种解决方法。基本上我所做的就是复制持久的底部表,使其表现得像模态表。

于 2016-06-17T07:01:47.437 回答