How to change the Font styles and face in Android?

前端 未结 6 1497
不知归路
不知归路 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 11:55

    if u want to use custom font jus download .ttf file and put the file into assets folder and use like this:

    TextView tv=(TextView)findViewById(R.id.textView);
    Typeface  tf = Typeface.createFromAsset(getActivity().getAssets(), "fonts/arial.ttf");
    tv.setTypeface(tf);
    

提交回复
热议问题