问题
Is there an easy way to change the font of the first letter in a string or word in Android? For example, I'd like to use an extravagant gothic font for the first letter of every word in a title, and then have the rest of the title in a smaller font.
Using custom imported fonts, so I'm not sure if HTML tags would work.
回答1:
My best guess would be to use a Spannable
for the first letter with a different typeface, using a TypefaceSpan
. Example.
If you want to use your own custom font, you should extend TypefaceSpan.
来源:https://stackoverflow.com/questions/12002305/changing-font-of-first-letter-in-android