国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

TextInputLayout輸入框控件的懸浮標(biāo)簽

2019-10-22 18:21:29
字體:
供稿:網(wǎng)友

本文實例為大家分享了TextInputLayout輸入框懸浮標(biāo)簽的具體代碼,供大家參考,具體內(nèi)容如下

TextInputLayout,輸入框,懸浮標(biāo)簽

TextInputLayout也是5.0以后的效果,想要使用同樣需要在build中配置:

dependencies {  compile 'com.android.support:design:23.3.0' } 

TextInputLayout可以用來顯示一個提示錯誤信息,把Hint放到EditText左上方等效果的一個布局;
如果項目中有這類的需求,使用TextInputLayout實現(xiàn)起來非常方便;
使用方法也比較簡單,直接用TextInputLayout包裹EditText即可:

<android.support.design.widget.TextInputLayout  android:id="@+id/til_user"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_marginTop="20dp"  android:layout_marginLeft="20dp"  android:layout_marginRight="20dp">  <EditText   android:id="@+id/et_user"   android:layout_width="match_parent"   android:layout_height="wrap_content"   android:hint="請輸入用戶名"/>  </android.support.design.widget.TextInputLayout> 

但是默認(rèn)情況下,當(dāng)你輸入文本的時候TextInputLayout只會將Hint移動到左上方,不會有錯誤提示,錯誤提示需要我們手動設(shè)置:

etUser= (EditText) findViewById(R.id.et_user);  tilUser= (TextInputLayout) findViewById(R.id.til_user);   //添加文本變化監(jiān)聽  etUser.addTextChangedListener(new TextWatcher() {   @Override   //輸入文本之前調(diào)用   public void beforeTextChanged(CharSequence s, int start, int count, int after) {   }    @Override   //正在輸入的時候調(diào)用   public void onTextChanged(CharSequence s, int start, int before, int count) {   if(s.length()>6){    //打開TextInputLayout異常提示    tilUser.setErrorEnabled(true);    //設(shè)置TextInputLayout異常提示信息    tilUser.setError("賬號最大長度為6");   }else {    //關(guān)閉TextInputLayout異常提示    tilUser.setErrorEnabled(false);   }   }    @Override   //輸入以后調(diào)用   public void afterTextChanged(Editable s) {   }  }); 

點擊打開鏈接免費下載源碼

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識閱讀請移步到Android開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 永修县| 广宁县| 无锡市| 镇巴县| 永胜县| 秭归县| 阜阳市| 炉霍县| 老河口市| 密云县| 额敏县| 威海市| 江西省| 福清市| 上饶市| 镇赉县| 榆社县| 天门市| 获嘉县| 绩溪县| 上思县| 翁牛特旗| 蒲江县| 南陵县| 平定县| 介休市| 辉县市| 金寨县| 利川市| 正阳县| 隆回县| 会泽县| 西吉县| 铜川市| 呈贡县| 临汾市| 依安县| 东乡族自治县| 邵阳县| 宜城市| 济宁市|