Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android EditText 狀態切換

Android EditText 狀態切換

編輯:關於Android編程

  不可編輯狀態 <EditText                     android:id="@+id/ed_newPwd"                     android:layout_width="80dp"                     android:layout_height="50dp"                     android:focusable="false"/>   可編輯狀態 ed_adress.setFocusable(true); ed_adress.requestFocus(); ed_adress.setFocusableInTouchMode(true); 完美解決 別忘了關閉鍵盤進入不可編輯狀態的時候 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);   //得到InputMethodManager的實例 if (imm.isActive()) { //如果開啟 imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS);  //關閉軟鍵盤,開啟方法相同,這個方法是切換開啟與關閉狀態的 }
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved