现在的位置: 首页 > 综合 > 正文

android – 页面初始化时让组件得不到焦点

2014年02月06日 ⁄ 综合 ⁄ 共 353字 ⁄ 字号 评论关闭

最近在做一个应用,其中一个界面上有几个EditText,我发现每次启动这个界面之后焦点就自动落在第1个EditText上,从而使EditText的提示不能显示。

解决的方法是:在EditText的父组件(比如linearlayout)添加两个属性,如下

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

如果没有父组件的话可以添加一个隐藏的 linearLayout,并加上上面的两个属性:

<LinearLayoutandroid:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px" />

抱歉!评论已关闭.