Change font for EditText in Android?

android, android-edittext, fonts, typeface

Solution

 editText.setTypeface(Typeface.SERIF); 

As like as for TextView.

 <TextView
  ...
     android:typeface="serif"
  ... />

Edit: Above is the XML

Problem

Is there any way to change the font for a EditText in Android? I want it to match the font's I set for all my textViews.

Original source

Related problems