在我的应用程序中,我想要印地语以及马拉地语字体。我已成功使用我的应用程序中的字体。现在我的问题是,无论我用英语写什么方式,它都应该转换为马拉地语或印地语。
代码
public class MarathiTextViewReg extends TextView {
public MarathiTextViewReg(Context context, AttributeSet attrs) {
super(context, attrs);
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "fonts/KRDV010_0.TTF");
setTypeface(typeface);
}
}
我想要什么
<com.techmorphosis.sundaram.mcqdemo.Utils.MarathiTextViewReg
android:id="@+id/tv_content"
style="@style/text_view_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Maths"
android:textSize="20sp" />
现在这里的android:text =“Maths”属性我用英文写的,但在运行应用程序时,我希望它在马拉地语。