您的位置:首页 > 其它

使用DataBinding来进行字体的自定义

2017-08-01 11:44 453 查看
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 25

buildToolsVersion "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>


<LinearLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

android:gravity="center">


<TextView

    android:layout_width="match_parent"

android:layout_height="50dp"

android:gravity="center"

android:text="Hello world"

android:textSize="18sp"

android:typeface="@{@string/nutso2}"/>


<TextView

    android:layout_width="match_parent"

android:layout_height="50dp"

android:gravity="center"

android:textSize="18sp"

android:text="Hello world"

android:typeface="@{@string/notoSans_regular}"/>


<TextView

    android:layout_width="match_parent"

android:layout_height="50dp"

android:gravity="center"

android:textSize="18sp"

android:text="Hello world"

android:typeface="@{@string/notoSansui_boldItalic}"/>


<TextView

    android:layout_width="match_parent"

android:layout_height="50dp"

android:gravity="center"

android:text="Hello world"

android:textSize="18sp"

android:typeface="@{@string/icomoon}"/>


<TextView

    android: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 {


@BindingConversion

public 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;


@Override

protected 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 {


@BindingConversion

public static Typeface convertStringToFace(String fontName){

try {

return FontCache.getTypeface(fontName,FontApp.getInstance());

}catch (Exception e){

throw e;

}

}


}


补充: 如果不想每次都在xml中设置字体,可以在绑定一个常用的属性时设置一个默认的字体。比如字体是需要作用在
text
上的,那么我们只需要在
setText
的时候绑定一个默认的字体就
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: