0

I want to change the font of my phone via my android app.If i applied fonts on my android app in edit text that font style must be show on phone messaging app edit text field. And also i make a custom keyboard app for that .In phone messaging app it show my fonts style keyboard but not showing in edit text field.

1 Answers1

0

Use Typeface to add edditional font to the textview. Download and save the font in the asset folder and use Typeface in the textView or editText

How to change the font on the TextView?

 Typeface type = Typeface.createFromAsset(getAssets(),"fonts/Kokila.ttf"); 
 txtyour.setTypeface(type);
Tomin B Azhakathu
  • 2,656
  • 1
  • 19
  • 28
  • Thanks but my problem is that i want font style (which i save in my app) will be same outside my app like when i closed my app and open phone messaging app it should show my font style on that messaging on its edittext field. – Deepak Vashisth Oct 12 '17 at 05:15
  • Hope this may help you https://stackoverflow.com/questions/4233461/android-unicode-charset-problems-when-sending-an-sms-sendtextmessage – Tomin B Azhakathu Oct 12 '17 at 05:36