日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

android点击隐藏控件,Android编程实现点击EditText之外的控件隐藏软键盘功能

發布時間:2025/3/20 Android 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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之外的控件隐藏软键盘功能的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。