DataBinding+ViewModel+LiveData+Room+Rxjava的使用之二DataBinding

DataBinding的数据绑定和简单使用

其一xml

<TextView
    android:id="@+id/waht"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

activity或者fragment里赋值

binding.waht.setText("我来设置属性");

其二xml中的数据绑定

定义一个数据来源bean类

public class Car {
    public String car_top;
    public String car_bottom;

    public String getCar_top() {
        return car_top;
    }

    public void setCar_top(String car_top) {
        this.car_top = car_top;
    }

    public String getCar_bottom() {
        return car_bottom;
    }

    public void setCar_bottom(String car_bottom) {
        this.car_bottom = car_bottom;
    }
}

xml中用法

<layout>
<data>
    <variable
        name="bean"
        type="moc.ludomym.ym.main_xianglong.Car"/>
    <!--type (bean类) name   xml中使用的别名-->
</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"
        tools:context="moc.ludomym.ym.main_xianglong.MainActivity">

        <TextView
            android:id="@+id/waht"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{bean.car_top}"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </LinearLayout>

</layout>

其中数据绑定可以使有@{bean.car_top}直接来使用 这里面配合着room和livedata特别方便

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值