malayalam font in android?

前端 未结 6 1977
野的像风
野的像风 2020-12-14 12:05

i want to develop an application which contain malyalam text for that i want to add malayalam font.. is this compatible on all android devices.can any one please help me to

6条回答
  •  旧巷少年郎
    2020-12-14 12:20

    TextView textView = (TextView)findViewById(R.id.myTextView);
    Typeface typeFace =Typeface.createFromAsset(getApplicationContext().getAssets(),"AnjaliOldLipi.ttf");
    textView.setTypeface(typeFace);
    textView.setText("നിങ്ങൾക്കിവിടെ മലയാളവും ഇംഗ്ലീഷും (english) print  ചെയ്യാം");
    

提交回复
热议问题