Android MVVM实战Demo --- 基于DataBinding

提到Android的架构,大家肯定会想到MVC、MVP、MVVM;今天我们就来一起学习下基于DataBinding的MVVM。在这里你也许会问,DataBinding和MVVM之间有什么关系吗?首先你需要明确下DataBinding是做什么的,DataBinding是实现数据和UI双向绑定的框架。其实两者的关系很简单,MVVM是一种设计思想,而DataBinding只是实现MVVM模式的一种方式而已,除此之外,实现MVVM还有另一种方式,那就是ViewModel+LiveData+Repository;在看本小节之前,希望您对DataBinding的基础知识有所了解。我们先来看下实例Demo最后实现的效果:


截图

很简单,界面主要分为上下两部分,上部分为FrameLayout,下部分为一个RecyclerView。话不多说,直接上代码:

首先是我们的数据Bean类:

public class HallListBean implements Serializable{

    public int iRet;

    public String info;

    public HallListData data;

    public static class HallListData implements Serializable{

        public int total;

        public ArrayList<HallItem> list;

        public PackageInfo package_info;
    }

    public static class HallItem implements Serializable{

        public String id;

        public String hotel_name;

        public String cate_name;

        public String hall_name;

        public String cover;

        public String table_num;

        public String price;

        public String pillar_name;

        public String icon;
    }

    public static class PackageInfo implements Serializable{

        public String id;

        public String price;

        public String background;

        public String color;

        public String title;
    }

}

我们的主界面为 HallListActivity,对应的ViewModel为 HallListViewModel,我们先来看下HallListActivity的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>
        <import type="android.view.View"/>
        <variable
            name="hallListViewModel"
            type="com.example.databindingtest.viewmodel.HallListViewModel"/>
    </data>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="180dp">

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="fitXY"
                    app:imageUrl="@{hallListViewModel.packageData.background}"/>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="85dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/tv_price"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="20dp"
                            android:includeFontPadding="false"
                            android:text="@{hallListViewModel.packageData.price}"
                            android:textColor="@color/white"
                            android:textSize="26dp"
                            android:textStyle="bold" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginBottom="1dp"
                            android:includeFontPadding="false"
                            android:text="元起全包/桌"
                            android:textColor="@color/white"
                            android:textSize="26dp"
                            android:textStyle="bold" />

                    </LinearLayout>

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="20dp"
                        android:layout_marginTop="5dp"
                        android:layout_marginBottom="20dp"
                        android:includeFontPadding="false"
                        android:text="@{hallListViewModel.packageData.title}"
                        android:textColor="@color/white"
                        android:textSize="13dp" />

                    <View
                        android:layout_width="match_parent"
                        android:layout_height="0dp"
                        android:layout_weight="1"
                        android:background="@drawable/bg_hall_top"/>

                </LinearLayout>

            </FrameLayout>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:overScrollMode="never"
                app:items="@{hallListViewModel.listItems}"/>

        </LinearLayout>

        <ProgressBar
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="15dp"
            android:visibility="@{hallListViewModel.dataLoading ? View.VISIBLE : View.GONE}" />

    </FrameLayout>

</layout>

接着看下HallListViewModel:

package com.example.databindingtest.viewmodel;

import android.content.Context;
import android.databinding.ObservableArrayList;
import android.databinding.ObservableBoolean;
import android.databinding.ObservableField;

import com.example.databindingtest.model.HallListBean;
import com.example.databindingtest.utils.ResponseResult;
import com.google.gson.Gson;

public class HallListViewModel{

    private Context mContext;
    public ObservableArrayList<HallListBean.HallItem> listItems = new ObservableArrayList<>();
    public ObservableField<HallListBean.PackageInfo> packageData = new ObservableField<>();
    public ObservableBoolean dataLoading = new ObservableBoolean(true);

    public HallListViewModel(Context context) {
        this.mContext = context.getApplicationContext();
    }

    public void getHallListData(){

        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(500);
                    //模拟网络拉取数据
                    HallListBean testBean = new Gson().fromJson(ResponseResult.response, HallListBean.class);
                    packageData.set(testBean.data.package_info);
                    listItems.addAll(testBean.data.list);
                    dataLoading.set(false);

                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }).start();
    }
}

为了简单起见,笔者没有进行网络请求,而是直接把Json数据写入到ResponseResult.response,开启一个线程来模拟网络请求操作。接着我们看下HallListActivity中的代码,HallListActivity(xml)作为MVVM中的View,肯定只做和UI操作相关的事情啦:

package com.example.databindingtest;

import android.databinding.DataBindingUtil;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;

import com.example.databindingtest.utils.DividerItemDecoration;
import com.example.databindingtest.databinding.ActivityHallListBinding;
import com.example.databindingtest.viewmodel.HallListViewModel;

public class HallListActivity extends AppCompatActivity {

    private HallListViewModel viewModel;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ActivityHallListBinding hallListBinding = DataBindingUtil.setContentView(this, R.layout.activity_hall_list);
        viewModel = new HallListViewModel(this);
        hallListBinding.setVariable(BR.hallListViewModel, viewModel);

        hallListBinding.recyclerView.setLayoutManager(new LinearLayoutManager(this));
        hallListBinding.recyclerView.addItemDecoration(new DividerItemDecoration(this));
        hallListBinding.recyclerView.setAdapter(new HallListAdapter(this));
    }

    @Override
    protected void onResume() {
        super.onResume();

        viewModel.getHallListData();
    }
}

由HallListActivity中的代码可以看到,recyclerview对应的adapter为HallListAdapter,我们还是先来看下 item_hall的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<layout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>
        <variable
            name="itemHall"
            type="com.example.databindingtest.model.HallListBean.HallItem"/>
    </data>

    <LinearLayout
        android:id="@+id/ll_hall"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:padding="20dp">

        <ImageView
            android:layout_width="110dp"
            android:layout_height="83dp"
            android:scaleType="centerCrop"
            app:imageUrl="@{itemHall.cover}"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="15dp"
            android:layout_toRightOf="@+id/card_left"
            android:orientation="vertical">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:maxLines="1"
                android:text="@{itemHall.hotel_name}"
                android:textColor="#323038"
                android:textSize="14dp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:layout_marginTop="2dp">

                <TextView
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:ellipsize="end"
                    android:maxLines="1"
                    android:text="@{itemHall.hall_name}"
                    android:textColor="#323038"
                    android:textSize="15dp"
                    android:textStyle="bold" />

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@{itemHall.price}"
                        android:textColor="#FF1D41"
                        android:textSize="16dp"
                        android:textStyle="bold" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="元全包/桌"
                        android:textColor="#FF1D41"
                        android:textSize="11dp" />

                </LinearLayout>

            </LinearLayout>
            
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="1dp"
                android:gravity="center_vertical"
                android:orientation="horizontal">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@{itemHall.cate_name}"
                    android:textColor="#95949D"
                    android:textSize="11sp" />

                <View
                    android:layout_width="1dp"
                    android:layout_height="10dp"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="7dp"
                    android:layout_marginRight="7dp"
                    android:background="#DFDFDF" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@{itemHall.table_num}"
                    android:textColor="#95949D"
                    android:textSize="11sp" />

                <View
                    android:layout_width="1dp"
                    android:layout_height="10dp"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="7dp"
                    android:layout_marginRight="7dp"
                    android:background="#DFDFDF" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@{itemHall.pillar_name}"
                    android:textColor="#95949D"
                    android:textSize="11sp" />

            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

</layout>

接着看下HallListAdapter中的代码:

package com.example.databindingtest;

import android.content.Context;
import android.databinding.DataBindingUtil;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;

import com.example.databindingtest.databinding.ItemHallBinding;
import com.example.databindingtest.model.HallListBean;
import com.example.databindingtest.utils.BindingViewHolder;

import java.util.ArrayList;

public class HallListAdapter extends RecyclerView.Adapter<BindingViewHolder>{

    private Context context;
    private final LayoutInflater mLayoutInflater;
    private ArrayList<HallListBean.HallItem> hallList = new ArrayList<>();

    public HallListAdapter(Context context) {
        this.context = context;
        mLayoutInflater = (LayoutInflater)
                context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @NonNull
    @Override
    public BindingViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {

        ItemHallBinding itemHallBinding = DataBindingUtil.inflate(mLayoutInflater, R.layout.item_hall, parent, false);
        return new BindingViewHolder(itemHallBinding);
    }

    @Override
    public void onBindViewHolder(@NonNull BindingViewHolder bindingViewHolder, final int position) {

        ItemHallBinding binding = (ItemHallBinding)bindingViewHolder.getBinding();
        binding.setVariable(BR.itemHall, hallList.get(position));
        binding.executePendingBindings();

        binding.llHall.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(context, hallList.get(position).hotel_name, Toast.LENGTH_SHORT).show();
            }
        });
    }

    @Override
    public int getItemCount() {
        return hallList.size();
    }

    public void replaceData(ArrayList<HallListBean.HallItem> datas){

        hallList.clear();
        hallList.addAll(datas);
        notifyDataSetChanged();
    }
}

对应的ViewHolder为:

package com.example.databindingtest.utils;

import android.databinding.ViewDataBinding;
import android.support.v7.widget.RecyclerView;

public class BindingViewHolder<T extends ViewDataBinding> extends RecyclerView.ViewHolder{

    private T mBinding;

    public BindingViewHolder(T mBinding) {
        super(mBinding.getRoot());
        this.mBinding = mBinding;
    }

    public T getBinding(){
        return mBinding;
    }

}

最后附上Demo中使用到的BindingAdapter:

package com.example.databindingtest.utils;

import android.databinding.BindingAdapter;
import android.widget.ImageView;

import com.bumptech.glide.Glide;

public class ImageBinding {

    @BindingAdapter({"imageUrl"})
    public static void loadImageFromUrl(ImageView view,
                                        String url) {
        Glide.with(view.getContext())
                .load(url)
                .into(view);
    }
}

package com.example.databindingtest.utils;

import android.databinding.BindingAdapter;
import android.support.v7.widget.RecyclerView;

import com.example.databindingtest.HallListAdapter;
import com.example.databindingtest.model.HallListBean;

import java.util.ArrayList;

public class RecyclerItemBinding {

    @BindingAdapter("app:items")
    public static void setItems(RecyclerView recyclerView, ArrayList<HallListBean.HallItem> items) {
        HallListAdapter adapter = (HallListAdapter) recyclerView.getAdapter();
        if (adapter != null)
        {
            adapter.replaceData(items);
        }
    }
}

上述就是示例Demo的所有代码,如果大家有不同的观点,欢迎一起交流啊。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342