我是android的初学者.我可以在Android中更改Textview的字体类型.但是我必须在资产文件夹中使用.ttf文件,才能进行这种字体更改.
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText(msg);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/handsean.ttf");
text.setTypeface(font);
Run Code Online (Sandbox Code Playgroud)
上面的代码是我用来改变文本View.but的字体.我需要更改单选按钮,Edittext和复选框(我也在我的应用程序中使用)的文本的字体类型.Plz帮助我在这里.谢谢你.