android字体设置

来源:互联网 发布:几个程序员去吃饭 编辑:程序博客网 时间:2024/06/18 10:32

android字体

通过Textview的Id获取当前内容来更改字体
字体放在res下面的assets文件夹中

TextView textView=(TextView)findViewById(R.id.textView);
Typeface typeface=Typeface.createFromAsset(getAssets(),”GB.ttf”);
textView.setTypeface(typeface);

放置位置截图