Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クリック可能な Android リストビューに多色(おそらく html) テキストを追加したいと考えています。
例: te s t それは可能ですか?
HTML を直接使用することも非常に簡単です。色、小さいテキスト、太字のテキストの例を次に示します。
String styledText = "<font color='#666666'>grey text</font><small>small text</small><b>bold text</b>"; exampleEditText.setText(Html.fromHtml(styledText));