2
AssetManager mgr=getAssets();
Typeface tf=Typeface.createFromAsset(mgr, "fonts/cube.ttf");
textView.setTypeface(tf);

上面的方法可以修改TextView的字体,但我不想这样。我的想法:用户可以在互联网上下载字体并将其存储在 sd 卡中。然后用户可以将他们刚刚下载的字体应用到小部件。我觉得这种方法可以减少项目的大小。有什么建议么?

4

1 回答 1

2

1.) 通过互联网下载“font.ttf”(替换为您的 ttf 文件名)文件到外部存储。

2.) 这样做。

 Typeface typeface = Typeface.createFromFile(
        new File(Environment.getExternalStorageDirectory(), "font.ttf"));
 textView.setTypeface(tf);
于 2013-07-19T02:35:08.733 回答