1 .通过findViewById找到view,然后一个个的去设置字体
Typeface customFont = Typeface.createFromAsset(this.getAssets(), "fonts/customFont.ttf");TextView view = (TextView) findViewById(R.id.text);view.setTypeface(customFont);···
一个看着还好,可是应用中可是有很多的文本或者按钮的,不可能逐个去设置。于是大多数都选择了第二种方法。
2 .创建一个子类,继承自TextView或者Button等等
public class CustomTextView extends TextView {public CustomTextView(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);}public CustomTextView(Context context, AttributeSet attrs) {super(context, attrs);}public CustomTextView(Context context) {super(context);}public void setTypeface(Typeface tf, int style) {if (style == Typeface.BOLD) {super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/CustomFont_Bold.ttf"));} else {super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/CustomFont.ttf"));}}}
然后在xml文件中每次都使用自定义的View,相比上一个方案,这一个要稍微好点。但相信都达不到各位的要求,只不过是换一个字体,需要这么麻烦吗?
3 . Calligraphy
这是一个开源库,地址是https://github.com/chrisjenx/Calligraphy ,在github上5000+star,感觉还是不错的,也从侧面说出自定义字体的需求量有多大。
那么接下来就讲重点了
如何使用DataBinding来进行字体的自定义呢?
TOO EASY,不用每次都去手写,也不需要自定义View
首先,打开DataBinding
android {compileSdkVersion 25buildToolsVersion "25.0.0"defaultConfig {···}buildTypes {···}dataBinding {enabled = true}}
再看结构

在项目中的assets/fonts文件夹下加入了5种字体,然后在strings.xml中定义了字体的路径
<resources><string name="notoSans_regular">fonts/NotoSans-Regular.ttf</string><string name="notoSansui_boldItalic">fonts/NotoSansUI-BoldItalic.ttf</string><string name="icomoon">fonts/icomoon.ttf</string><string name="nutso2">fonts/Nutso2.otf</string><string name="ruthie">fonts/Ruthie.ttf</string>···</resources>
而在layout的xml中只需要这么使用,那么便已经完成了8成了
<?xml version="1.0" encoding="utf-8"?><layout xmlns:android="http://schemas.android.com/apk/res/android"><data></data><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:gravity="center"><TextViewandroid:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:text="Hello world"android:textSize="18sp"android:typeface="@{@string/nutso2}"/><TextViewandroid:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:textSize="18sp"android:text="Hello world"android:typeface="@{@string/notoSans_regular}"/><TextViewandroid:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:textSize="18sp"android:text="Hello world"android:typeface="@{@string/notoSansui_boldItalic}"/><TextViewandroid:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:text="Hello world"android:textSize="18sp"android:typeface="@{@string/icomoon}"/><TextViewandroid:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:text="Hello world"android:textSize="18sp"android:typeface="@{@string/ruthie}"/></LinearLayout></layout>
而剩下的两成,一成在FontBinding文件
public class FontBinding {@BindingConversionpublic static Typeface convertStringToFace(String s){try {return Typeface.createFromAsset(FontApp.getInstance().getAssets(),s);}catch (Exception e){throw e;}}}
这里定义了一个转换器,将xml文件中获取到的字符资源,转换成了一个Typeface
最后一成,只需要使用就好了
public class MainActivity extends AppCompatActivity {ActivityMainBinding mMainBinding;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);mMainBinding = DataBindingUtil.setContentView(this, R.layout.activity_main);}}
看一下截图,一起哈啤
没了解过DataBinding的人可能不知道ActivityMainBinding是怎么来的,这是编译时生成的,在如下图所示的位置可以找到
打开ActivityMainBinding可以看到这样的代码
this.mboundView1.setTypeface(com.ditclear.sample.FontBinding.convertStringToFace(mboundView1.getResources().getString(R.string.nutso2)));this.mboundView2.setTypeface(com.ditclear.sample.FontBinding.convertStringToFace(mboundView2.getResources().getString(R.string.notoSans_regular)));this.mboundView3.setTypeface(com.ditclear.sample.FontBinding.convertStringToFace(mboundView3.getResources().getString(R.string.notoSansui_boldItalic)));this.mboundView4.setTypeface(com.ditclear.sample.FontBinding.convertStringToFace(mboundView4.getResources().getString(R.string.icomoon)));this.mboundView5.setTypeface(com.ditclear.sample.FontBinding.convertStringToFace(mboundView5.getResources().getString(R.string.ruthie)));
这些mboundViewX就是xml中的TextView,由于没写id,所以都是自动生成的名称,可以看到给每一个使用了绑定的TextView都设置了字体,相当于系统帮我们做了第一个方法中重复性的工作。
当然我们还可以优化一下,由于每次都要操作assests文件夹,也会带来一定的开销,所以也有必要提供一个字体缓存FontCache,代码来自 britzl on stackoverflow
public class FontCache {private static ArrayMap<String, Typeface> fontCache = new ArrayMap<String, Typeface>();public static Typeface getTypeface(String fontName, Context context) {Typeface tf = fontCache.get(fontName);if(tf == null) {try {tf = Typeface.createFromAsset(context.getAssets(), fontName);}catch (Exception e) {return null;}fontCache.put(fontName, tf);}return tf;}}
那么FontBinding就变成了这样
public class FontBinding {@BindingConversionpublic static Typeface convertStringToFace(String fontName){try {return FontCache.getTypeface(fontName,FontApp.getInstance());}catch (Exception e){throw e;}}}
补充: 如果不想每次都在xml中设置字体,可以在绑定一个常用的属性时设置一个默认的字体。比如字体是需要作用在text上的,那么我们只需要在setText的时候绑定一个默认的字体就
在Android开发中,自定义字体通常需要繁琐的操作。本文介绍了如何利用DataBinding库简化这一过程,无需手动设置或创建自定义View。通过DataBinding,可以方便地在assets/fonts目录下管理字体,并在XML布局中直接引用,结合转换器实现字体设置。编译时,DataBinding会自动为每个TextView设置字体,提高效率并减少资源消耗。同时,文章提到了字体缓存的实现,进一步优化性能。
651

被折叠的 条评论
为什么被折叠?



