我的布局中有一个TextInputLayout,我希望在它的提示中使用html标签或spannable,但它不适用于它。
我搜索谷歌中的所有链接,但结果是“现在不可能,也许在下一个版本中,可以更新”。
是否可以自定义TextInputLayout视图以接受提示中的html标记?我该怎么做?
答案 0 :(得分:3)
在TextInputLayout的布局xml文件中添加以下代码:
MySQL workbench (6.3.9)
在string.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>