我的资源文件中有一个带有<sub>
标记的字符串,我希望该字符串是我TextInputLayout
的提示。
让字符串为:
<string name="fck">f<sub><small>ck</small></sub> [MPa]</string>
xml是:
<android.support.design.widget.TextInputLayout
android:id="@+id/til"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/textDialog"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/fck"/>
</android.support.design.widget.TextInputLayout>
我的TextInputLayout
标签没有下标。是否有可能实现这一点,或者它是库错误,我们需要等待谷歌修复?