我是android的新手,正在开发一个应用程序,为用户提供关于google所有字体的信息。
为此,我需要制作一个文本视图Something like this
单击文本视图时,字体将随文本而改变。
我在考虑使用onclicklistener
最佳答案
您可以将"your_font.ttf"
文件放入asset文件夹,然后使用
Typeface custom_font_1 = Typeface.createFromAsset(getAssets(), "your_font.ttf");
然后用这个分配给你的
showCaseTextView
。 showCaseTextView.setTypeFace(custom_font_1);
然后在
onClickListener
的showCaseTextView
中更改specifiedTextView
字体,如下所示 specifiedTextView.setTypeFace(custom_font_1);
对其他字体重复。