您可能已经找到了解决该问题的方法,但是我一直在寻找解决方法,但仍然无法真正找到所需的确切信息,因此我想将其发布在这里。
我所做的是以下操作(这非常笼统,目的是让您了解如何继续进行操作,复制和粘贴所有代码将不起作用O:D):
首先,用单个视图将EditText和您想要在程序中使用的任何其他视图包装起来。就我而言,我使用LinearLayout包装了所有内容。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLinearLayout">
<EditText
android:id="@+id/editText"/>
<ImageView
android:id="@+id/imageView"/>
<TextView
android:id="@+id/textView"/>
</LinearLayout>
然后,在代码中,您必须将Touch Listener设置为主MainLinearLayout。
final EditText searchEditText = (EditText) findViewById(R.id.editText);
mainLinearLayout.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if(searchEditText.isFocused()){
if(event.getY() >= 72){
//Will only enter this if the EditText already has focus
//And if a touch event happens outside of the EditText
//Which in my case is at the top of my layout
//and 72 pixels long
searchEditText.clearFocus();
InputMethodManager imm = (InputMethodManager) v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
}
}
Toast.makeText(getBaseContext(), "Clicked", Toast.LENGTH_SHORT).show();
return false;
}
});
我希望这对某些人有帮助。或者至少帮助他们开始解决问题。