0
佈局多的EditText我可以從佈局刪除的EditText焦點,如果它是唯一一個使用此字段:刪除重點從Android上
android:focusable="true"
android:focusableInTouchMode="true"
但如果我增加更多的,它一直專注於後一個。
佈局多的EditText我可以從佈局刪除的EditText焦點,如果它是唯一一個使用此字段:刪除重點從Android上
android:focusable="true"
android:focusableInTouchMode="true"
但如果我增加更多的,它一直專注於後一個。
從每個的EditText在XML中取出
<requestFocus/>
。
還有this和possibly that幫助我。上面的鏈接
摘要:
這些屬性添加到您的相對或線性佈局:
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
因此,例如:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true" >
提供您的XML代碼。 –