1. 首页
  2. 移动开发
  3. Android
  4. fontAwsfont在android中的使用于资源文件

fontAwsfont在android中的使用于资源文件

上传者: 2019-03-29 01:00:58上传 RAR文件 4.73MB 热度 38次
1、复制fontawesome-webfont.ttf到assets目录下 2、复制fontstrings.xml到values目录下 3、在布局文件中添加textView组件,设置android:text属性 @string/xxx,xxx代表fontstrings中的name名称 4、Activity中进行如下设置 Typeface font= Typeface.createFromAsset(getAssets(), "font/fontawesome -webfont.ttf"); Textview textView= (Button) findViewById(R.id.test); textView.setTypeface(font); -webfont.ttf"); Textview textView= (Button) findViewById(R.id.test); textView.setTypeface(font);
用户评论