gpt4 book ai didi

android - 在 EditText 下方显示 Helper 文本以及 Hint

转载 作者:IT老高 更新时间:2023-10-28 23:40:10 32 4
gpt4 key购买 nike

我正在尝试在这些方面有所作为:

EditText example

我可以使用 android:hint="Email Address" 显示提示,但无法显示帮助文本 - 这将是您的电子邮件用户名

    <android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="15"
android:hint="Username"
app:et_helper="Username is preferably your registered email"/>

</android.support.design.widget.TextInputLayout>`

我得到的只是并且没有用户名最好是您的注册电子邮件下面的edittext:

输出:

output

任何指针表示赞赏。谢谢。

最佳答案

最好的方法是使用TextInputLayout。谷歌在新的设计库中引入了它。为了使用 TextInputLayout,您必须将以下内容添加到您的 build.gradle 依赖项中:

compile 'com.android.support:design:22.2.0'

然后在你的 xml 文件中使用它:

<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="Enter your name"/>
</android.support.design.widget.TextInputLayout>

您可以通过将错误设置为 true 来设置文本。尽管它用于显示错误,但它适合您的使用。您可以根据需要更改颜色和字体。

TextInputLayout til = (TextInputLayout)    findViewById(R.id.textInputLayout);
til.setErrorEnabled(true);
til.setError("You need to enter a name");

enter image description here

关于android - 在 EditText 下方显示 Helper 文本以及 Hint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33891482/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com