1

我想使用模态底页。材料设计指南说,完全展开的底部工作表应该在操作栏下方 8dp。我怎样才能做到这一点?我想X在操作栏中保留一个标记以在完全展开时关闭底页。

当我尝试使用 linearLayout 底页时,当状态展开时它会占据整个屏幕。

我的底页布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="@dimen/design_bottom_sheet_modal_elevation"
android:orientation="vertical">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"/>


<Button
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_marginRight="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:text="ADD"/>

</LinearLayout>
4

1 回答 1

0

我没有找到简单的方法,但这就是我所做的。我测量了状态栏和操作栏的高度,然后从屏幕高度中减去。对我来说效果很好。不确定这是否是最好的方法。`

private int getBottomSheetMaximumHeight() {
        // get toolbar height
        Toolbar toolbar = (Toolbar) getActivity().findViewById(R.id.toolbar);
        int toolbarHeight = toolbar.getHeight();

        //get status bar height
        Rect rectangle = new Rect();
        Window window = getActivity().getWindow();
        window.getDecorView().getWindowVisibleDisplayFrame(rectangle);
        int windowHeight = rectangle.bottom;

        // material design recommended bottomsheet padding from actionbar
        final int padding = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,8, getContext().getResources().getDisplayMetrics());

        // maximum height of the bottomsheet
        return windowHeight - toolbarHeight - rectangle.top - padding;

    }`
于 2016-08-20T00:07:33.177 回答