TextInputLayout詳解

TextInputLayout是什么

TextInputLayout主要是作為EditText的容器耸序,從而為EditText生成一個浮動的Label铅檩,當(dāng)用戶點(diǎn)擊EditText的時候寂拆,EditText中的hint字符串會自動移到EditText的左上角。

TextInputLayout如何使用

●基本用法

xml布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:hint="請輸入用戶名"
            android:layout_height="wrap_content" />
    </android.support.design.widget.TextInputLayout>
    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:hint="請輸入郵箱"
            android:layout_height="wrap_content" />
    </android.support.design.widget.TextInputLayout>
</LinearLayout>

●設(shè)置最大字符數(shù)及錯誤提示

xml

<android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        app:counterEnabled="true" //設(shè)置為true才能顯字符數(shù)
        app:counterMaxLength="5" //設(shè)置最大字符數(shù)為5
        app:counterOverflowTextAppearance="@style/HintError" //設(shè)置超出字符數(shù)后提示文字的顏色俏竞,如果不設(shè)置默認(rèn)為@color/colorAccent的顏色
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:hint="請輸入用戶名"
            android:layout_height="wrap_content" />
</android.support.design.widget.TextInputLayout>

style文件(設(shè)置超出字符數(shù)的文字提示顏色為紅色)

<style name="HintError" parent="TextAppearance.AppCompat">
        <item name="android:textColor">@color/colorRed</item>
</style>

●設(shè)置錯誤提示文字

xml

<android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        app:errorEnabled="true" //設(shè)置為true
        android:id="@+id/textinputlayout_email"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:hint="請輸入郵箱"
            android:id="@+id/et_email"
            android:layout_height="wrap_content" />
</android.support.design.widget.TextInputLayout>

java代碼

editText_email=findViewById(R.id.et_email);
        textInputLayout =findViewById(R.id.textinputlayout_email);
        editText_email.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

            }

            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
                if(!RegexUtils.isEmail(charSequence)){
                    textInputLayout.setError("郵箱格式錯誤");
                    textInputLayout.setErrorEnabled(true);
                }else {
                    textInputLayout.setErrorEnabled(false);
                }
            }

            @Override
            public void afterTextChanged(Editable editable) {

            }
        });

●設(shè)置密碼是否可見

xml

<android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        app:errorEnabled="true"
        app:passwordToggleEnabled="true" //設(shè)置為true
        android:id="@+id/textinputlayout_password"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:hint="請輸入密碼"
            android:id="@+id/et_password"
            android:inputType="textPassword"
            android:layout_height="wrap_content" />
    </android.support.design.widget.TextInputLayout>

個人博客:https://myml666.github.io

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末瓦阐,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子纤子,更是在濱河造成了極大的恐慌搬瑰,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件控硼,死亡現(xiàn)場離奇詭異泽论,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)卡乾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門翼悴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人幔妨,你說我怎么就攤上這事鹦赎。” “怎么了误堡?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵古话,是天一觀的道長。 經(jīng)常有香客問我锁施,道長陪踩,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任悉抵,我火速辦了婚禮肩狂,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘姥饰。我一直安慰自己傻谁,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布列粪。 她就那樣靜靜地躺著审磁,像睡著了一般谈飒。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上力图,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天步绸,我揣著相機(jī)與錄音,去河邊找鬼吃媒。 笑死瓤介,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的赘那。 我是一名探鬼主播刑桑,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼募舟!你這毒婦竟也來了祠斧?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤拱礁,失蹤者是張志新(化名)和其女友劉穎琢锋,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體呢灶,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡吴超,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了鸯乃。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片鲸阻。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖缨睡,靈堂內(nèi)的尸體忽然破棺而出鸟悴,到底是詐尸還是另有隱情,我是刑警寧澤奖年,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布细诸,位于F島的核電站,受9級特大地震影響拾并,放射性物質(zhì)發(fā)生泄漏揍堰。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一嗅义、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸女气。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽鲤遥。三九已至涂屁,卻和暖如春劝术,著一層夾襖步出監(jiān)牢的瞬間博敬,已是汗流浹背友浸。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留偏窝,地道東北人收恢。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像祭往,于是被迫代替她去往敵國和親伦意。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理硼补,服務(wù)發(fā)現(xiàn)驮肉,斷路器,智...
    卡卡羅2017閱讀 134,599評論 18 139
  • 1已骇、通過CocoaPods安裝項(xiàng)目名稱項(xiàng)目信息 AFNetworking網(wǎng)絡(luò)請求組件 FMDB本地?cái)?shù)據(jù)庫組件 SD...
    陽明先生_x閱讀 15,968評論 3 119
  • 今天差點(diǎn)忘了 上午下午都工作了离钝,開會記錄的不全,回來什么也記不住褪储,導(dǎo)致寫匯報(bào)修改了好多 早上做了運(yùn)動 晚上和售后一...
    Parastoo閱讀 92評論 0 0
  • 家人極力督促我學(xué)醫(yī)卵渴,剛高考完我不是太理解,以為只是圖個安穩(wěn)與福利乱豆,那時的我只想TRY EVERYTHING奖恰。可當(dāng)我...
    光_武閱讀 493評論 3 0
  • 打 debug 包流程: git pull 分支最新代碼 Android Studio:Build - Gener...
    揚(yáng)州慢_閱讀 2,693評論 4 7