I have an edit text inside a bottom sheet fragment. when the focus come on the edit text the layout goes up . i tried
android:windowSoftInputMode=\"adjustNo
Seems like there is bug in the older design version. I encountered the same problem, but after I upgraded the design version, adjustnothing can work as expected.
In gradle:
com.android.support:design:26.1.0
In your BottomSheetDialog:
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);