How to change the Font styles and face in Android?

前端 未结 6 1506
不知归路
不知归路 2020-12-14 11:28

I want to change the font face and styles in android. How to do this? Am using emulator. Is this possible to change in emulator. Is there any permissions available to do tha

6条回答
  •  没有蜡笔的小新
    2020-12-14 12:08

    If you want to use a font which is not default (like "Helvetica") for the text in Android application then put the font file(Helvetic.ttf) in assets folder and do use this code as below:

    Typeface tf= Typeface.createFromAsset(getAssets(), "Helvetica.ttf");
      TextView mTextView =(TextView) findViewById(R.id.text);
        mTextView.setTypeface(tf);
    

提交回复
热议问题