Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android編程入門 >> Android 限制EditText僅僅能輸入數字、限制輸入類型、限制輸入長度的小技巧

Android 限制EditText僅僅能輸入數字、限制輸入類型、限制輸入長度的小技巧

編輯:Android編程入門

准確的說讓Edittext僅僅能輸入數字有方法兩種,都是通過xml屬性設置

方法一:

 <EditText
            android:id="@+id/u_account"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_marginLeft="13dp"
            android:inputType="phone|number"
            android:maxLength="11"
            android:numeric="integer"  //這個屬性限制僅僅能輸入數字
            android:singleLine="true"
            android:textColor="@color/hint_textcolor"
            android:textSize="14sp" />

方法二:

 <EditText
            android:id="@+id/u_account"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:background="@drawable/signup_input_pw_text_bg"
            android:digits="1234567890"  //這個屬性限制僅僅能輸入0-9這些數字</span>
            android:inputType="phone|number"
            android:maxLength="11"
            android:singleLine="true"
            android:textColor="@color/hint_textcolor"
            android:textSize="14sp" />

盡管方法一二都能夠。但方法一中  android:numeric="integer"已被官方放棄。所以不推薦使用。

用法而更好!

與時俱進嘛!

上面是曾經的博客內容;

以下補充些經常使用的技巧,實現方式都分為兩種:

  1. 限制輸入類型
    代碼:et_lxnr.setInputType(InputType.TYPE_TEXT_VARIATION_LONG_MESSAGE);
    xml:android:inputType="number"
  2. 限制輸入長度(如限制輸入最大長度10)
    代碼:et_lxnr.setFilters(new InputFilter[]{new InputFilter.LengthFilter(10)});
    xml:android:maxLength="10"
  3. 限制輸入固定的某些字符(如123456xyz)
    代碼:et_lxnr.setKeyListener(DigitsKeyListener.getInstance(“123456xyz”);
    xml:android:digits="@string/input_num_character"

以上是眼下知道比較經常使用的。以後若發現會繼續補上.


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved