您好,登錄后才能下訂單哦!
小編給大家分享一下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輸入框控件懸浮標簽的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。