我有一个具有教育背景的应用程序,我想使用适当的波斯字体进行阅读。我如何知道哪些字体可供使用? (我的意思是,我不想下载外部字体)任何人都可以为教育背景推荐一种好的波斯字体吗?
您好,您可以根据您要查找的视图自定义字体从互联网下载字体并将其放在 asset/fonts 文件夹下。
tv1=(TextView)findViewById(R.id.textView3);
tv2=(TextView)findViewById(R.id.textView4);
Typeface face= Typeface.createFromAsset(getAssets(), "font/font.ttf");
tv1.setTypeface(face);
Typeface face1= Typeface.createFromAsset(getAssets(), "font/font1.ttf");
tv2.setTypeface(face1);
“Noto”是其他语言的标准字体。 您可以找到“Noto”——https://www.google.com/get/noto/
“Droid阿拉伯语Naskh”很好,也支持波斯语。