EditText inputType型別整理

2022-01-26 07:08:22 字數 1440 閱讀 8845

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

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"//uri格式

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"//時間鍵盤

Unity Shader中可用的變數型別整理

原文連線 float型別,下面對應變數可以用flaot,half,fixed name inspector name float defaultvalue float型別,可以用乙個滑動條控制範圍,下面對應變數可以用float,half,fixed name inspector name range...

BigDecimal型別資料的整值輸出帶兩位小數

bigdecimal型別的資料輸出顯示時,整值的即便是限制了兩位小數,或者從資料庫中取出的資料就是帶兩位小數的,響應返回的依舊是不帶小數的值 儲存到資料庫中時,限制為儲存兩位小數 column name buy price columndefinition decimal 13,2 存10,如果以b...

向上取整與向下取整

向下取整的運算稱為floor,用數學符號 表示,與之相對的,向上取整的運算稱為ceiling,用數學符號 表示。c語言定義的取整運算既不是floor也不是ceiling,無論運算元是正是負總是把小數部分截斷 truncate 所以當運算元為正的時候相當於floor,當操作符為負的時候相當於ceili...