DataBinding

DataBinding详细的使用方法及工作中常遇到的问题(一)

2017-06-16  本文已影响2328人  adonis_lsh

前言

用DataBinding差不多现经手了三个项目,也用它开发了一年左右,对它的特性以及使用方面有了一些自己的理解,这里面可以和大家一起分享一下,详解DataBinding文档中的知识点,以及工作中可能遇到的一些问题,我每讲一部分都是写一个相应的demo以供参考.

DataBinding是什么?

官网文档地址:https://developer.android.com/topic/libraries/data-binding/index.html
翻译文档:自己谷歌搜索,网上已经有,这里就不再翻译
官方文档的原话是:Data Binding Library to write declarative layouts and minimize the glue code necessary to bind your application logic and layouts,The Data Binding Library offers both flexibility and broad compatibility — it's a support library,大致的意思就是DataBinding是一个通过胶水代码写声明布局文件并减少绑定应用程序逻辑的一个具有兼容和灵活性的一个支持库.看了之后还是一脸懵逼,不要紧,学知识嘛,慢慢来.

如何集成

集成很简单,在你app module的Gradle下面添加的代码:

android {
    ....
    dataBinding {
        enabled = true
    }
}

提醒:现在建议大家的AS更新到最新,目前最新稳定版式2.3.3.另外,你们公司如果接受了DataBinding这个还算有点新的东西,那么我建议大家使用JDK1.8,具体的详细介绍,请看官网上面的介绍,https://developer.android.com/guide/platform/j8-jack.html.

AS2.1以上才支持jack,如果你得AS版本比较低的话,可以使用兼容库Retrolambda.目前的稳定版而言,暂时不能使用instant run.
集成如下:

android {
    defaultConfig {
        ....
        jackOptions {
            enabled true
        }
    }
    ....
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

note:如果你用的AS3.0的话,就可以不通过jack进行编译,而且可以使用instant run,还加快的编译速度.具体的介绍:
http://developers.googleblog.cn/2017/05/android-studio-30-canary-1.html

如何使用

在工作中,我们经常遇到请求到一个对象,然后对象的信息需要在xml中展示的情况,用它怎么做到吗?比普通的做法有什么优势?

public class Student {
    private String name;
    private int age;
    private String headerImg;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getHeaderImg() {
        return headerImg;
    }

    public void setHeaderImg(String headerImg) {
        this.headerImg = headerImg;
    }
}
 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_demo1);
        initData();
    }

    private void initData() {
        //模拟网络请求部分,假如请求到了一个学生实体
        Student student = new Student();
        student.setAge(25);
        student.setName("李宁");
        student.setHeaderImg("http://i2.muimg.com/567571/b528af67d68f7597.png");
    }
XMl中:
<?xml version="1.0" encoding="utf-8"?>
<layout>

<data>

    <variable
        name="student"
        type="com.DataBinding.lsh.databindingdemo.Student" />
</data>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:app="http://schemas.android.com/apk/res-auto"
                  xmlns:tools="http://schemas.android.com/tools"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:orientation="vertical"
                  tools:context="com.DataBinding.lsh.databindingdemo.Demo1.Demo1Activity">


    </LinearLayout>
</layout>

跟布局的标签换了,换成了layout,其次多了data标签,下面有个一个varible标签,它的作用就是用来声明xml中绑定的变量,这里面的Type一定要写引用的全路径,不过好在现在都可以智能提示,打上一个Student,选择正确的一个,下面我们就要在xml的控件中绑定我们声明变量的字段,你可能会说,咦?student只是声明了,不是还没有给进行赋值吗?现在绑定上去不会报错吗?这个不用担心,它有一系列的默认值.一阵乱敲之后:

<?xml version="1.0" encoding="utf-8"?>
<layout>

    <data>

        <variable
            name="student"
            type="com.DataBinding.lsh.databindingdemo.Student" />
    </data>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:app="http://schemas.android.com/apk/res-auto"
                  xmlns:fresco="http://schemas.android.com/apk/res-auto"
                  xmlns:tools="http://schemas.android.com/tools"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:orientation="vertical"
                  tools:context="com.DataBinding.lsh.databindingdemo.Demo1.Demo1Activity">

        <com.facebook.drawee.view.SimpleDraweeView
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_gravity="center"
            fresco:actualImageScaleType="fitXY"
            fresco:placeholderImage="@mipmap/ic_launcher"
            fresco:placeholderImageScaleType="centerCrop"
            fresco:roundAsCircle="true" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="李宁"
            android:textSize="24sp" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="25"
            android:textSize="24sp" />


    </LinearLayout>
</layout>

我这里面用的加载图片的工具是fresco,它很强大,尤其在内存方面,而且还有一集成了一些常用的功能,比如圆形头像,圆角头像,gif播放,等常用的一些功能.

接下来开始绑定:


先绑定TextView的属性,写法如上述图片,控件中自带的这些属性一般可以直接绑定,如果想绑定一些没有的属性,就需要自己去指定,下面绑定图片地址展示图片的时候会用到.我们xml中除了图片,文本就绑定好了,那么activity要怎么操作呢?
在Activity中:

异常
我们愉快的编译运行,忽然闪退了,看异常:


点进去:

mboundView2就是我们设置年龄文本,后面的studentAge就是我们设置的年龄,这地方怎么会报错呢?
想一想,原来是我们student的age是int类型的,但是text属性不能直接设置int类型,那怎么办?
在string.xml中
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@{@string/intToString(student.age)}"
            android:textSize="24sp" />

在activity_demo1.xml中:

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@{@string/intToString(student.age)}"
            android:textSize="24sp" />

其他的类型的转化就可以参照这个去改.

绑定图片

public class ViewBindAdapter {
    @BindingAdapter({"bind:url"})
    public static void setImgUrl(SimpleDraweeView imageView, String uri) {
        if (!TextUtils.isEmpty(uri)) {
            imageView.setImageURI(Uri.parse(uri));
        }
    }
}

xml中:

        <com.facebook.drawee.view.SimpleDraweeView
            app:url="@{student.headerImg}"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_gravity="center"
            fresco:actualImageScaleType="fitXY"
            fresco:placeholderImage="@mipmap/zhanwei"
            fresco:placeholderImageScaleType="centerCrop"
            fresco:roundAsCircle="true" />

我们新建一个类,专门存放绑定的自定义属性,@BindingAdapter({"bind:url"})这句主要是声明xml中写的自定义的属性,可以连续写多个,比如这种:

  @BindingAdapter(value = {"uri", "placeholderImageRes", "request_width","request_height"}, requireAll = false)
    public static void loadImage(final ImageView imageView, String uri,
                                 @DrawableRes int placeholderImageRes,
                                 int width, int height){
                                 }

requireAll = false的意思是不用写全所有参数,方法的第一个参数是控件的本身,就是这么简单,这样就可以绑定成功了.

note:注意app:url="@{student.headerImg}"这个没有智能提示,代码颜色也没有改变,都是正常的,只要写对就行.

最新来一张图:


到这里,这些基本的操作就完成了,你已经对databinding有了一个大体的认识,接下来的几篇,将会更加深入的介绍它的使用方法和底层的原理.
demo地址:https://github.com/adonis-lsh/DataBindingDemo
上一篇下一篇

猜你喜欢

热点阅读