我的布局中有一个 TextInputLayout ,我想在它的提示中使用 html 标签或 spannable ,但它不适用于它。
我搜索了谷歌中的所有链接,但结果是“现在不可能,也许在下一个版本中并且可以更新”。
是否可以自定义 TextInputLayout 视图以在提示中接受 html 标记?我该怎么做?
我的布局中有一个 TextInputLayout ,我想在它的提示中使用 html 标签或 spannable ,但它不适用于它。
我搜索了谷歌中的所有链接,但结果是“现在不可能,也许在下一个版本中并且可以更新”。
是否可以自定义 TextInputLayout 视图以在提示中接受 html 标记?我该怎么做?
在 TextInputLayout 的布局 xml 文件中添加以下代码:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/activity_horizontal_margin"
app:hintAnimationEnabled="false">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/enter_message" />
</android.support.design.widget.TextInputLayout>
在 string.xml 文件中添加以下代码:
<string name="enter_message">Enter Message<font fgcolor="red">*</font></string>