本文介绍了如何制定一个完整的马来亚应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Android应用程序developer.How一个初学者,我可以创建一个完整的马拉雅拉姆语app.I想拍像按钮每个接口,在malayalam.Please文字view..etc帮我给一些建议
I am a beginner in android app developer.How can i create a complete malayalam app.I want to make each interface like button,text view..etc in malayalam.Please help me by give some suggestions
推荐答案
您可以简单地使用。
TextView tv = (TextView) findViewById(R.id.tv);
Typeface Malayalam = Typeface.createFromAsset(getAssets(), "AnjaliOldLipi.ttf");
tv.setTypeface(Malayalam);
tv.setText("റമീസ് ");
下载从此处并把它放在你的Android项目的资产文件夹。
Download the ttf file from HERE and put it in the assets folder of your Android project.
这篇关于如何制定一个完整的马来亚应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!