如何在片段内的键盘上方显示小吃店
How to show snackbar above keybord inside fragment
我有问题。在某些设备上,Snackbar 隐藏在键盘下方。如何在键盘上方显示小吃店。我在 AndroidManifest.xml 中为包含您的小吃店的 activity 找到了类似 android:windowSoftInputMode="adjustResize"
的解决方案,但我需要在片段中显示 snakbar。请帮我。
为什么不在 snackbar 即将显示之前隐藏键盘,如下所示:
InputMethodManager inputMethodManager = (InputMethodManager)getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getActivity().getWindow().getDecorView().getRootView().getWindowToken(), 0);
//here show your snackbar
我有问题。在某些设备上,Snackbar 隐藏在键盘下方。如何在键盘上方显示小吃店。我在 AndroidManifest.xml 中为包含您的小吃店的 activity 找到了类似 android:windowSoftInputMode="adjustResize"
的解决方案,但我需要在片段中显示 snakbar。请帮我。
为什么不在 snackbar 即将显示之前隐藏键盘,如下所示:
InputMethodManager inputMethodManager = (InputMethodManager)getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getActivity().getWindow().getDecorView().getRootView().getWindowToken(), 0);
//here show your snackbar