edittext輸入型別總結

2021-07-04 03:12:07 字數 1372 閱讀 3038

總結一下edit 輸入型別總結

android:inputtype="none" 隨便吧

android:inputtype="text" 

文字型別,多為大寫、小寫和數字符號

android:inputtype="textcapcharacters" 字母大寫

android:inputtype="textcapwords" 首字母大寫

android:inputtype="textcapsentences" 僅第乙個字母大寫

android:inputtype="textautocorrect" 自動完成

android:inputtype="textautocomplete" 自動完成

android:inputtype="textmultiline" 多行輸入

android:inputtype="textimemultiline" 輸入法多行(如果支援)

android:inputtype="textnosuggestions" 不提示

android:inputtype="texturi" **

android:inputtype="textemailaddress" 電子郵件位址

android:inputtype="textemailsubject" 郵件主題

android:inputtype="textshortmessage" 短訊

android:inputtype="textlongmessage" 長資訊

android:inputtype="textpersonname" 人名

android:inputtype="textpostaladdress" 位址

android:inputtype="textpassword" 密碼

android:inputtype="textvisiblepassword" 可見密碼

android:inputtype="textwebedittext" 作為網頁表單的文字

android:inputtype="textfilter" 文字篩選過濾

android:inputtype="textphonetic" 拼音輸入 //數值型別

android:inputtype="number" 數字

android:inputtype="numbersigned" 帶符號數字格式

android:inputtype="numberdecimal" 帶小數點的浮點格式

android:inputtype="phone" 撥號鍵盤

android:inputtype="datetime" 時間日期

android:inputtype="date" 日期鍵盤

android:inputtype="time" 時間鍵盤

限制EditText輸入型別與長度

這次遇到的問題是要對乙個輸入框可輸入內容與長度做限制,以前的時候就在xml裡面的edittext相應屬性設定一下就好了 android inputtype phone android inputtype text 文字 android inputtype number 數字長度也好搞,設定乙個max...

EditText限制文字輸入

private final textwatcher mtextwatcher new textwatcher public void ontextchanged charsequence s,int start,int before,int count public void aftertextch...

edittext禁止輸入表情

第一步 先在xml布局裡新增乙個自定義的edittext 第二步 實現這個自定義的edittext public class containsemojiedittext extends edittext public containsemojiedittext context context,att...