可能重複用戶:
Android How do you set the max number of characters for an EditTextAndroid的防止在編輯框中輸入超過4個數字
我怎樣才能防止在進入的EditText超過4個數字的用戶? 感謝
可能重複用戶:
Android How do you set the max number of characters for an EditTextAndroid的防止在編輯框中輸入超過4個數字
我怎樣才能防止在進入的EditText超過4個數字的用戶? 感謝
這是相當容易的任務,可以從文件得知,但仍然。
的回答你的問題由兩個部分組成:
第一部分可以使用android:inputType="number"
來實現。另一個可以通過使用android:maxLength
字段來實現。所以最終的結果是:
<EditText ...
android:inputType="number"
android:maxLength="4"
android:lines="1"/>
設置的EditText的maxLength
屬性等於4
謝謝,是否有可能只有字符(A到Z)的輸入類型? – Dev