fontAwsfont在android中的使用于资源文件
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);
用户评论