Change font for EditText in Android?

前端 未结 8 964
梦谈多话
梦谈多话 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:55

    Create a fonts folder on assets folder and put your .ttf font file, then into onCreate() function write:

    EditText editText =(EditText)findViewById(R.id.insert_yors_edit_text_layout);
    Typeface type = Typeface.createFromAsset(getAssets(),"fonts/yours_font.ttf"); 
    editText.setTypeface(type);
    

提交回复
热议问题