我有一个活动显示一个编辑文本和两个底部。
当我点击编辑文本时,会出现Android虚拟键盘,以便我可以输入我的文本。现在,在点击任何底部之前,我想隐藏键盘。我想通过点击屏幕来做到这一点。
我在堆栈溢出中看到了一些类似问题的帖子,但这看起来不起作用。我尝试设置一个侦听器:
// Create an anonymous implementation of OnFocusChangeListener
private OnFocusChangeListener mFocusListener = new OnFocusChangeListener() {
public void onFocusChange(View v, boolean b) {
// do something when the focus changes
hideSoftKeyboard(v);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setupUI(findViewById(R.id.parent));
EditText editText = (EditText) findViewById (R.id.edit_message);
editText.setOnFocusChangeListener(mFocusListener);
setContentView(R.layout.activity_main);
}
我还尝试创建一个父活动,该活动递归地将 onTouch 事件关联到每个不是文本视图的视图,但它只注册文本视图(我从另一个 stackoverflow 帖子中获取了这段代码)
public void setupUI(View view) {
//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) {
hideSoftKeyboard(v);
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);
}
}
}
对此有什么向前的解决方案吗?我不敢相信没有更简单的方法可以做到这一点。我正在使用姜饼 API(API 级别 10)
谢谢
好的,我找到了一种非常简单的方法:XML 布局定义。由于布局是一个视图组,我们可以在其上实现事件。去定义处理布局单击的方法(hideSoftKeyboard)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:id="@+id/main_layout"
android:onClick="hideSoftKeyboard" >
以下是我实现该方法的方式:
public void hideSoftKeyboard(View view) {
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
}
出于同样的目的,我使用以下方法。
private void hideKeypad(){
EditText edtView=(EditText)findViewById(R.id.username);
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edtView.getWindowToken(), 0);
}