Search code examples
androidfontsandroid-edittexttypeface

Change font for EditText in Android?


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.


Solution

  •  editText.setTypeface(Typeface.SERIF); 
    

    As like as for TextView.

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

    Edit: Above is the XML