模态底部表:如何从操作栏设置8dp?

时间:2016-07-31 16:06:22

标签: android material-design bottom-sheet

我想使用模态底片。材料设计指南说完全展开的底板应位于动作栏下方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>

1 个答案:

答案 0 :(得分: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;

    }`