android:focusableInTouchMode="true" //設定該內本身可以被 focus
android:descendantFocusability="beforeDescendants" //代表其取得 focus 的順序優先於其子物件
之後在主程式 protected void onCreate(Bundle savedInstanceState) 中加上
private EditText edit1;
edit1-> (EditText)findViewById(R.id.Edittext1);
edit1->clearFocus();
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusableInTouchMode="true" android:descendantFocusability="beforeDescendants" >
沒有留言:
張貼留言