我有问题。 Snackbar隐藏在某些设备的键盘下方。如何在keybord上方显示snackbar。我在AndroidManifest.xml中为包含你的零食栏的活动找到了这个allSatisfy
的解决方案,但我需要在片段内显示snakbar。请帮我。
答案 0 :(得分:4)
为什么不在快餐栏即将显示之前隐藏键盘:
InputMethodManager inputMethodManager = (InputMethodManager)getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getActivity().getWindow().getDecorView().getRootView().getWindowToken(), 0);
//here show your snackbar