android – 在片段中隐藏键盘

前端之家收集整理的这篇文章主要介绍了android – 在片段中隐藏键盘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在活动中的片段内隐藏键盘时遇到这些错误

Error: Cannot resolve getSystemService

Cannot resolve Context

Cannot resolve getCurrentFocus()

@H_301_10@InputMethodManager inputManager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);@H_403_11@

解决方法

在片段内你应该使用getActivity(),@H_301_10@InputMethodManager inputManager = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE); inputManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);@H_403_11@

猜你在找的Android相关文章