BottomSheetBehaviour layout_behavior .
Layout .
:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:keepScreenOn="true"
android:orientation="vertical"
android:gravity="center"
android:id="@+id/bottom_sheet"
android:clickable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
</LinearLayout>
initalise BottomSheetDialog :
final View bottomSheet = view.findViewById(R.id.bottom_sheet);
behavior = BottomSheetBehavior.from(bottomSheet);
BottomSheet, onClickListener .
behaviorProfile.setState(BottomSheetBehavior.STATE_EXPANDED);