关闭键盘

 1 public class ViewUtil {
 2 
 3     public static void hideOneInputMethod(Activity act, View v) {
 4         // 从系统服务中获取输入法管理器
 5         InputMethodManager imm = (InputMethodManager) act.getSystemService(Context.INPUT_METHOD_SERVICE);
 6         // 关闭屏幕上的输入法软键盘
 7         imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
 8     }
 9 
10 }

 

posted @ 2023-03-01 17:24  旺旺大菠萝  阅读(170)  评论(0编辑  收藏  举报