Changing font of first letter in Android

我只是一个虾纸丫 提交于 2021-02-10 11:50:43

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!