visited 13 states (5.77%)
Create your own visited map of The World or Triposo world travel guide for Android

2014-09-24

Android應用程式中不預設focus於EditText元件的方法

加上兩行於 activity_main.xml (反正就是最主要的xml file)

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"
>

這些也是同標籤文章 :

沒有留言: