EditText 屬性盤點

2021-07-09 11:10:18 字數 649 閱讀 5324

edittext 屬性 盤點

1).android:hint = "請輸入資訊"

屬性:在edittext沒有輸入內容時,預設顯示的文字.

2).android:numeric = ""

屬性:設定文字可輸入的型別

1).integer

只能輸入整型

2).decimal

輸入小數

3).android:singleline = ""

屬性:edittext是否可以換行輸入

1).true

2).false

4).android:password

屬性:輸入的文字以密碼的格式顯示

類似的有:

1).password

2).phonenumber

.....其他

注:不建議單獨去使用這些,可以使用5)的屬性

5).android:inputtype=""

屬性:edittext的輸入的文字型別

類別:1).text

2).textarea

3).none

4)texturi

....

6).android:imeoptions

屬性:

EditText常用屬性

一 android inputtype引數型別說明 android inputtype none 輸入普通字元 android inputtype text 輸入普通字元 android inputtype textcapcharacters 輸入普通字元 android inputtype tex...

Android開發 EditText屬性詳解

1 edittext輸入的文字為密碼形式的設定 1 通過.xml裡設定 2 在 裡設定 通過設定edittext的settransformationmethod 方法來實現隱藏密碼或這顯示密碼。2 edittext輸入的文字為 號碼 3 edittext字數限制的設定 4 edittext設定字型 ...

EditText屬性設定以及輸入長度限制

方法一 textwatcher監聽 edittext.addtextchangedlistener new textwatcher override public void ontextchanged charsequence s,int arg1,int arg2,int arg3 overrid...