android隱藏EditText光標

在android中若是有EditText,那麼在載入時,光標會默認顯示在第一個EditText框中,若是不想顯示光標,且也不想把該光標移動到下一個EditText框,最簡單的方法是在該 EditText以前增長一個不可見的LinearLayout。

代碼以下
<LinearLayout android:focusable= "true"
      android:focusableInTouchMode= "true" android:layout_width= "0px"
      android:layout_height= "0px" />
相關文章
相關標籤/搜索