要在Android中显示TextInputLayout中的上标提示,你可以按照以下步骤进行操作:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your name">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
TextInputLayout textInputLayout = findViewById(R.id.textInputLayout);
textInputLayout.setError("Invalid name");
textInputLayout.setErrorEnabled(true);
textInputLayout.setErrorTextColor(ColorStateList.valueOf(Color.RED));
textInputLayout.setErrorTextAppearance(R.style.CustomErrorText);
其中,R.style.CustomErrorText是你自定义的样式,可以在styles.xml文件中定义。例如:
<style name="CustomErrorText" parent="TextAppearance.Design.Error">
<item name="android:textSize">12sp</item>
</style>
以上是在Android中显示TextInputLayout中的上标提示的基本步骤。如果你想了解更多关于TextInputLayout的信息,可以参考腾讯云的相关产品:TextInputLayout。
领取专属 10元无门槛券
手把手带您无忧上云