小编jen*_*aiz的帖子

在Android中为主题添加自定义字体

有没有办法在Android的主题中添加自定义字体?

我已阅读快速提示:自定义Android字体,但在这里我们必须以编程方式将自定义字体添加到文本中.

TextView txt = (TextView) findViewById(R.id.custom_font);  
Typeface font = Typeface.createFromAsset(getAssets(), "Chantelli_Antiqua.ttf");  
txt.setTypeface(font); 
Run Code Online (Sandbox Code Playgroud)

但我想按样式/主题设置自定义字体.

fonts android textview

44
推荐指数
3
解决办法
4万
查看次数

标签 统计

android ×1

fonts ×1

textview ×1