これが私の Activity.xml ファイルです。AppCompatEditText を TextInputLayout 内に配置しました。ヒントを上付きテキスト付きの html 形式で表示したいのですが、そうはなりません。すべてのテキストは通常のテキストとして表示されます。回避策はありますか?
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp">
<android.support.v7.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/acceleration_unit_ms2"
android:inputType="numberDecimal"
android:id="@+id/acceleration_unit_ms2"/>
</android.support.design.widget.TextInputLayout>
Strings.xml
<string name="acceleration_unit_ms2">Meter/Second Square (m/s<sup><small>2</small></sup>)</string>