我想动态地将字体用于其他活动 目前我的字体设置为
custom_font = Typeface.createFromAsset(getAssets(), "fonts/AbrilFatface-Regular.ttf");
font.setTypeface(custom_font);
我希望动态地将此字体添加到其他活动
答案 0 :(得分:0)
你可以:
通过"fonts/AbrilFatface-Regular.ttf"
额外信息传递路径(Intent
)并让其他活动呼叫createFromAsset()
或
维护进程级Typeface
缓存(例如LRUCache
将String
字体名称映射到Typeface
),并将密钥传递给该缓存通过Intent
额外