android 取消edittext焦点

页面中如果有EditText会默认获取焦点,如果进入页面时不想让其获取到焦点可以按如下步骤:

1、在布局的最外层添加属性:

android:focusable="true"
android:focusableInTouchMode="true"

2、给最外层布局添加一个标记:

<requestFocus />

效果为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:focusable="true"
  android:focusableInTouchMode="true" >

  <requestFocus />

  <EditText
    android:id="@+id/et_content"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

</RelativeLayout>

如果还想在点击EditText以外的区域时让其失去焦点,可以给布局添加一个点击事件:

contentView.setOnTouchListener(new OnTouchListener() {
  @Override
  public boolean onTouch(View v, MotionEvent event) {
    if(event.getAction() == MotionEvent.ACTION_DOWN){
      et_content.clearFocus();
    }
    return false;
  }
});

//contentView就上面的那个布局文件

//View contentView = View.inflate(getApplicationContext(),R.layout.activity_xx, null);

//et_content是你的EditText

上一篇:Linux内核中断处理体系分析


下一篇:Java集合之TreeMap