最近在做一个应用,其中一个界面上有几个EditText,我发现每次启动这个界面之后焦点就自动落在第1个EditText上,从而使EditText的提示不能显示。
解决的方法是:
在EditText的父组件(比如linearlayout)添加两个属性:
android:focusable="true" android:focusableInTouchMode="true"
如果没有父组件的话可以添加一个隐藏的 linearLayout,并加上上面的两个属性
<LinearLayout
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"
/>
转载于:https://www.cnblogs.com/afirefly/archive/2011/10/09/2203413.html
相关资源:数据结构—成绩单生成器