android BottomSheetDialogFragment open fully on landscape

ww‮‬w.lautturi.com
android BottomSheetDialogFragment open fully on landscape
class MyBottomSheetFragment : BottomSheetDialogFragment() {
    //....
    override fun onStart() {
        super.onStart()
        //this forces the sheet to appear at max height even on landscape
		
        val behavior = BottomSheetBehavior.from(requireView().parent as View)
        behavior.state = BottomSheetBehavior.STATE_EXPANDED
    }
	//....
}
Created Time:2017-08-30 14:57:18  Author:lautturi