最近在通讯录新建联系人=中,一进入一个页面,EditText默认就会自动获取焦点,很是郁闷, 如何让EditText不自动获取焦点?
那么如何取消这个默认行为呢?
在网上找了好久,有点监听软键盘事件,有点调用clearFouse()方法,但是测试了都没有!xml中也找不到相应的属性可以关闭这个默认行为
解决之道:在EditText的父级控件中找一个,设置成
androID:focusable="true" androID:focusableIntouchMode="true"
demo.xml:
<?xml version="1.0" enCoding="utf-8"?> <relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="#ffffff" androID:baselineAligned="false" androID:focusable="true" androID:focusableIntouchMode="true" > <relativeLayout androID:layout_wIDth="250dp" androID:layout_height="wrap_content" androID:ID="@+ID/txtLayout" androID:layout_margintop="20dp" androID:layout_centerHorizontal="true" > <EditText androID:layout_wIDth="fill_parent" androID:layout_height="35dp" androID:ID="@+ID/editPhone" androID:phoneNumber="true" androID:text="@string/txtaddPhone" androID:textcolor="#D8D8D8" androID:background="@drawable/txtupbg" androID:textSize="15dp" /> </relativeLayout> </relativeLayout>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持编程小技巧!
总结以上是内存溢出为你收集整理的Android取消EditText自动获取默认焦点全部内容,希望文章能够帮你解决Android取消EditText自动获取默认焦点所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)