如何制作支持印度语言的android应用程序。比如古吉拉特语、印地语

如何制作支持印度语言的android应用程序。比如古吉拉特语、印地语,android,Android,我想制作一个问答游戏应用程序。我的手机不支持古吉拉特语,但我有一个显示古吉拉特字体的应用程序。可能是图像,但我想知道它如何在我的手机中显示古吉拉特字体 尝试向资源/字体添加字体并使用它 Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/GujaratiFont.ttf"); TextView myTextView = (TextView)findViewById(R.id.myTextView); myTextV

我想制作一个问答游戏应用程序。我的手机不支持古吉拉特语,但我有一个显示古吉拉特字体的应用程序。可能是图像,但我想知道它如何在我的手机中显示古吉拉特字体

尝试向资源/字体添加字体并使用它

Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/GujaratiFont.ttf");
TextView myTextView = (TextView)findViewById(R.id.myTextView);
myTextView.setTypeface(myTypeface);
可能重复的