Android应用程序的古吉拉特语字体

时间:2012-04-01 08:25:44

标签: android android-layout textview

我正在开发在文本视图中使用古吉拉特语字体的应用程序,但我的问题是在文本视图中它显示了盒子而不是我用“TypeFace”尝试的古吉拉特语字体,而文本是在string.xml但它是不工作请帮助我,我必须在星期二在学校提交,所以请帮助我

提前谢谢

TextView cap = (TextView) view.findViewById(R.id.caption); Typeface tf = Typeface.createFromAsset(getAssets(),"fonts/gujaratifont.ttf"); cap.setTypeface(tf); cap.setText(R.string.gujarati);

3 个答案:

答案 0 :(得分:3)

将文件放入资源文件夹。

尝试这样做。 getResources().getString(R.string.gujarati);

它的一个原因是因为资源无法访问TextView。看看吧。

答案 1 :(得分:2)

TextView cap = (TextView) view.findViewById(R.id.caption);
Typeface tf = Typeface.createFromAsset(getContext().getAssets(),"fonts/gujaratifont.ttf");
//(or)
Typeface tf = Typeface.createFromAsset(getContext().getAssets(),"gujaratifont.ttf");
cap.setTypeface(tf);
cap.setText(R.string.gujarati);

并将您的字体文件放在assets文件夹中。 即,在assets文件夹中创建一个名称为fonts的文件夹,并将该gujarati字体放在fonts文件夹中。

如果您想要从HERE

下载古吉拉特语字体

答案 2 :(得分:0)

TextView mtxt =(TextView)findViewById(R.id.action_settings);

       Typeface face1 = Typeface.createFromAsset(getAssets(), 

                 "Lohit-Gujarati.ttf"); 

       mtxt.setTypeface(face1); 

       mtxt.setText("પૂર્વ વડાપ્રધાન રાજીવ ગાંધી");