I am using ConstraintLayout for my layout. I am creating a BottomSheetDialog and setting the layout to it which uses the ConstraintLayout at top.
Note: If i use LinearLayout everything works fine and BottomSheetDialog takes proper height but when i am using ConstraintLayout, it shows only one option.
Please find the screenshot below when i am using ConstraintLayout:
My xml file:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/white">
    <TextView
        android:id="@+id/tv_other_methods"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ripple"
        android:gravity="center_horizontal"
        android:padding="@dimen/dp_12"
        android:text="@string/from_other_methods"
        android:textColor="@color/blue"
        android:textSize="@dimen/sp_17" />
    <View
        android:id="@+id/view_other_methods"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dip_1"
        android:background="@color/light_grey"
        app:layout_constraintBottom_toBottomOf="@id/tv_other_methods" />
    <TextView
        android:id="@+id/tv_FromChinaUnionPay"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ripple"
        android:gravity="center_horizontal"
        android:padding="@dimen/dp_12"
        android:text="@string/from_china_union_pay"
        android:textColor="@color/blue"
        android:textSize="@dimen/sp_17"
        app:layout_constraintBottom_toBottomOf="@id/view_other_methods"
        app:layout_constraintTop_toTopOf="@id/view_FromChinaUnionPay" />
    <View
        android:id="@+id/view_FromChinaUnionPay"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dip_1"
        android:background="@color/light_grey"
        app:layout_constraintBottom_toBottomOf="@id/tv_FromChinaUnionPay" />
    <TextView
        android:id="@+id/tv_Cancel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ripple"
        android:gravity="center_horizontal"
        android:padding="@dimen/dp_12"
        android:text="@string/cancel"
        android:textColor="@color/blue"
        android:textSize="@dimen/sp_17"
        app:layout_constraintTop_toBottomOf="@+id/view_FromChinaUnionPay" />
</android.support.constraint.ConstraintLayout>
My java code for BottomSheetDialog:
final BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(mContext);
            bottomSheetDialog.setContentView(R.layout.dialog_web_view_options);
            // dialog.setCancelable(false);
            final Window window = bottomSheetDialog.getWindow();
            assert window != null;
            window.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
            window.setLayout(ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.WRAP_CONTENT);
            window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
            window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
            window.getDecorView().setPadding(20, 0, 20, 0);
            bottomSheetDialog.setOnShowListener(new DialogInterface.OnShowListener() {
                @Override
                public void onShow(DialogInterface dialog) {
                    FrameLayout bottomSheet = bottomSheetDialog.findViewById(android.support.design.R.id.design_bottom_sheet);
                    BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
                    behavior.setSkipCollapsed(true);
                    behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
                }
            });
In my layout if i replaceConstraintLayout with LinearLayout then it works fine and takes full height. Please let me know if i am doing something wrong.
I have tried these solutions but nothing worked:
- Set state of BottomSheetDialogFragment to expanded
 - BottomSheetDialogFragment - How to set expanded height (or min top offset)
 - Android BottomSheetDialogFragment does not expand completely
 
Any help will be appreciated. Thanks!
