Change font for EditText in Android?

前端 未结 8 939
梦谈多话
梦谈多话 2020-12-10 10:17

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.

8条回答
  •  自闭症患者
    2020-12-10 10:57

    Add this code in your java file Which type you want you can add like NORMAL, ITALIC, BOLD, BOLD_ITALIC.

    edittext.setTypeface(null, Typeface.ITALIC);

提交回复
热议问题