android点击隐藏控件,Android编程实现点击EditText之外的控件隐藏软键盘功能
本文實例講述了Android編程實現點擊EditText之外的控件隱藏軟鍵盤功能。分享給大家供大家參考,具體如下:
工具類
...
public static void hideKeyboard(Context ctx) {
if (ctx != null) {
View view = ((Activity) ctx).getCurrentFocus();
if (view != null) {
InputMethodManager inputManager = (InputMethodManager) ctx
.getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(view.getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
}
}
}
點擊除EDITTEXT之外的控件隱藏軟鍵盤,如果是viewgroup控件,遞歸執行
public static void setupUI(View view, final Context ctx) {
//Set up touch listener for non-text box views to hide keyboard.
if(!(view instanceof EditText)) {
view.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
hideKeyboard(ctx);
return false;
}
});
}
//If a layout container, iterate over children and seed recursion.
if (view instanceof ViewGroup) {
for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
View innerView = ((ViewGroup) view).getChildAt(i);
setupUI(innerView, ctx);
}
}
}
...
}
調用時只需要傳遞最外層的layout即可。
UtilApp.setupUI((RelativeLayout) findViewById(R.id.login_parent), mContext);
希望本文所述對大家Android程序設計有所幫助。
總結
以上是生活随笔為你收集整理的android点击隐藏控件,Android编程实现点击EditText之外的控件隐藏软键盘功能的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android studio selec
- 下一篇: mt65xx android phone