打开一个activity,让edittext不获得焦点

 
在实际开发中,有的页面用到Edittext控件,这时候进入该页面可能会自动弹出输入法,这么显示不太友好,所以需要设置一下让Edittext默认不自动获取焦点。在网上查资料解决办法如下:

在EditText的父级控件中找一个,设置成
android:focusable="true"
android:focusableInTouchMode="true"
这样,就把EditText默认的行为截断了!

一个activity页面中有两个元素:
1.Editext;
2.ListView

每次新进入页面后,Editext就会自动获得焦点。

请问如何不让Editext自动获得焦点?

在Edit的父view设置如下属性:
android:focusable="true" 
android:focusableInTouchMode="true"

最简单的办法是在EditText前面放置一个看不到的LinearLayout,让它率先获取焦点:

  1. <LinearLayout
  2. android:focusable="true" android:focusableInTouchMode="true"
  3. android:layout_width="0px" android:layout_height="0px"/>

在manifest中,找到对应的Activity修改,加入这么一句android:windowSoftInputMode="stateHidden|adjustUnspecified"
例如:

  1. <activity
  2. android:name="qinXianYuZou.ZhiZuo.peizhi.Pei_Zhi"
  3. android:windowSoftInputMode="stateHidden|adjustUnspecified" >
  4. </activity>

在Edit的设置如下属性:
android:focusable="true" 
android:focusableInTouchMode="true"

上一篇:Slave_SQL_Running: No mysql同步故障解决方法


下一篇:"mysql"."innodb_table_stats" not found 故障解决