中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TextInputLayout輸入框控件懸浮標簽的示例分析

發布時間:2021-07-19 09:54:47 來源:億速云 閱讀:195 作者:小新 欄目:移動開發

小編給大家分享一下TextInputLayout輸入框控件懸浮標簽的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體內容如下

TextInputLayout輸入框控件懸浮標簽的示例分析

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

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

TextInputLayout可以用來顯示一個提示錯誤信息,把Hint放到EditText左上方等效果的一個布局;
如果項目中有這類的需求,使用TextInputLayout實現起來非常方便;
使用方法也比較簡單,直接用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>

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

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

以上是“TextInputLayout輸入框控件懸浮標簽的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

车险| 陆良县| 诸城市| 北宁市| 科尔| 彰化市| 民勤县| 清水县| 余庆县| 南平市| 中西区| 广东省| 合山市| 永和县| 宜阳县| 西贡区| 岢岚县| 扬中市| 罗江县| 师宗县| 安顺市| 左贡县| 安岳县| 楚雄市| 田林县| 荥经县| 安陆市| 桂阳县| 乐清市| 石楼县| 卢龙县| 麻阳| 高唐县| 海伦市| 花莲县| 万盛区| 瑞安市| 黎平县| 太和县| 雷波县| 开鲁县|