How to set maximum expanded height in android support design bottom sheet?

前端 未结 4 1682
臣服心动
臣服心动 2020-12-24 06:46

I already showed my bottom sheet layout with its peek height set to 100dp. But how can I limit my bottom sheet to expand to 500dp only? This is my sample layout:

<         


        
相关标签:
4条回答
  • 2020-12-24 07:04

    Above solutions didn't work for me so I solved it by

    1. added app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior" in the root view of bottom sheet layout.

    2. custom style for bottom sheet:

    <style name="AppBottomSheetDialogTheme" parent="Theme.MaterialComponents.BottomSheetDialog">
            <item name="bottomSheetStyle">@style/AppModalStyle</item>
        </style>
    
        <style name="AppModalStyle" parent="Widget.MaterialComponents.BottomSheet">
            <item name="behavior_peekHeight">600dp</item>
        </style>

    3. And using this in Activity or Fragment by

        val mBottomSheetDialog = BottomSheetDialog(this, R.style.AppBottomSheetDialogTheme)
        val inflater = this.layoutInflater
        val sheetView = inflater.inflate(R.layout.bottom_sheet_layout, null)
        mBottomSheetDialog.setContentView(sheetView)
        mBottomSheetDialog.show()
    
    0 讨论(0)
  • 2020-12-24 07:05

    If using BottomSheetDialogFragment:

    In my case I was using BottomSheetDialogFragment and modified the bottom sheet peek height by getting its reference by override OnCreateDialog method inside my BottomSheetFragment

    @NonNull @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
    
        dialog = (BottomSheetDialog) super.onCreateDialog(savedInstanceState);
    
        dialog.setOnShowListener(new DialogInterface.OnShowListener() {
            @Override
            public void onShow(DialogInterface dialog) {
                BottomSheetDialog bottom_dialog = (BottomSheetDialog) dialog;
    
                FrameLayout bottomSheet = (FrameLayout) bottom_dialog.findViewById(com.google.android.material.R.id.design_bottom_sheet);
                assert bottomSheet != null;
                //BottomSheetBehavior.from(bottomSheet).setState(BottomSheetBehavior.STATE_EXPANDED);
                DisplayMetrics displayMetrics = requireActivity().getResources().getDisplayMetrics();
                int height = displayMetrics.heightPixels;
                int maxHeight = (int) (height*0.80);
                BottomSheetBehavior.from(bottomSheet).setPeekHeight(maxHeight);
            }
        });
    
        return dialog;
    }
    
    0 讨论(0)
  • 2020-12-24 07:09

    to stop the bottom sheet from moving up the full screen is simple, just set a layout_height for your NestedScrollView to 500dp, also you probably want to set it's layout_gravity="bottom"

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/design_bottom_sheet"
        android:layout_width="match_parent"
        android:layout_height="500dp"
        android:background="#000000"
        android:layout_gravity="bottom"
        app:behavior_hideable="true"
        app:behavior_peekHeight="100dp"
        app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
    
            <TextView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_marginBottom="5dp"
                android:background="#e444ff" />
    
            <TextView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_marginBottom="5dp"
                android:background="#e444ff" />
    
            <TextView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_marginBottom="5dp"
                android:background="#e444ff" />
    
        </LinearLayout>
    
    </android.support.v4.widget.NestedScrollView>
    

    if you don't want the view to be draggable up then you need to set behavior_peekHeight and layout_height to the same values.

    And to stop the view from being draggable down is the behavior_hideable flag just set this to false

    Good Luck and Happy Coding!

    0 讨论(0)
  • 2020-12-24 07:11

    You can just set param "maxHeight" to the root viewgroup of your bottom sheet.

    android:maxHeight=500dp

    Works good with ConstraintLayout as root layout.

    0 讨论(0)
提交回复
热议问题