How to install custom font in android device

android

Solution

See here @CommonsWare answer, You cannot add fonts to an existing device, except as part of a custom firmware build, or possibly by rooting the device.

but you can add fonts in your appliction. like:

 TextView txtvw=(TextView)findViewById(R.id.textviewname);

 Typeface typface=Typeface.createFromAsset(getAssets(),"fonts/burmese.ttf");

  txtvw.setTypeface(typface);

Note: put your font in `assets/fonts` dir in project

OR if your device is rooted then see this tuts for installing Custom Fonts on Your Android Device

Problem

I want to install custom font which is .ttf file in android device when my application start. Actually I need to install Burmese font in my android device when I run my application. Is it possible? If yes, then how? I don't need typeface. I want to install in system.

Original source

Related problems