java EditText的浮动标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java EditText的浮动标签相关的知识,希望对你有一定的参考价值。

<android.support.design.widget.TextInputLayout
        android:id="@+id/input_layout_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <!-- Wrap edit text here-->
</android.support.design.widget.TextInputLayout>
dependencies {
    compile 'com.android.support:design:24.2.1'
}
// Declare and initialize 
TextInputLayout textInputLayout = (TextInputLayout) view.findViewById(R.id.input_layout_name);

// If error
textInputLayout.setError("Username and password must be greater an 5 characters");

// If no error
textInputLayout.setErrorEnabled(false);

以上是关于java EditText的浮动标签的主要内容,如果未能解决你的问题,请参考以下文章

从 EditText 到浮动的字符串

材料设计中的Android EditText视图浮动提示

使用 TextInputLayout 时更改 EditText 提示颜色

TextInputLayout的基本使用

TextInputLayout 在用户关注它之前不显示 EditText 提示

单击按钮时如何从java Widgets radioButton,editText读取输入