如何在片段内显示keybord上方的snackbar

时间:2018-06-11 21:16:24

标签: android android-snackbar

我有问题。 Snackbar隐藏在某些设备的键盘下方。如何在keybord上方显示snackbar。我在AndroidManifest.xml中为包含你的零食栏的活动找到了这个allSatisfy的解决方案,但我需要在片段内显示snakbar。请帮我。

1 个答案:

答案 0 :(得分:4)

为什么不在快餐栏即将显示之前隐藏键盘:

InputMethodManager inputMethodManager = (InputMethodManager)getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getActivity().getWindow().getDecorView().getRootView().getWindowToken(), 0);
//here show your snackbar