美文网首页Android知识技术干货Android技术知识
Android周记一:利用DataBinding实现MVVM模式

Android周记一:利用DataBinding实现MVVM模式

作者: 秋风Capton | 来源:发表于2017-09-25 01:03 被阅读0次

    前言

    我是一名Android应用开发人员,入行才半个多月。目前在一家创业公司上班,每天都要想怎样完成好老板吩咐的任务,现在脑子里都是想着怎样快速的提升自己的工作能力。
    由于我之前做过几个个人项目,对于android应用的制作大概步骤有一个比较清晰理解,所以上班第一天就开始接手另一个搞技术的老板写的代码,到现在半个月了。让我感触最深的是,我第一眼接触到项目的时候,被里面的代码结构深深的折服了,原来我以前写的东西简直是狗屎。对比于自己原来臃肿的代码结构,老板写的代码简直让我这个新手都能很快上手接着他的模式和思路继续完成这个app。

    RecyclerView在MVVM模式下的图片加载

    今天要说的是公司app里面用到的数据加载和显示的模式MVVM(Model-View-ViewModel)。对于这个模式,这里我仅仅谈谈我对它的理解,如有不对的地方,恳请大神们帮忙指出我的错误。

    • Model 指的是数据层,里面包含一些bean数据。(我这里直接用bean数据类代表Model)
    • View 指的是显示层,就是通过DataBinding绑定视图后得到的一个bindingView
    • ViewModel 这是一个抽象的概念,这个类其实就是数据显示与其控制逻辑的核心,里面可以有很多更改数据的方法、监听各种事件,我们可以在生成这个类对象的MainActivity或Fragment中调用它定义好的各种方法。

    对于DataBinding,我的理解也不深,所以这里就不再讨论它的具体用法了。大家对于我这篇文章,能看懂多少就算多少吧,因为我也不知道我是否能写出一些真正发人深省的内容来。

    项目地址

    https://github.com/Ccapton/DatabindingDemo

    具体代码

    微信图片_20170925005613.png

    先来看我的 MainActivity.java,是不是被这简短的几十行代码惊艳到了 ^ - ^,其实我只是把具体的视图显示与数据加载放在了ViewModel这个类里而已。

    import android.databinding.DataBindingUtil;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    
    import com.example.capton.databindingdemo.databinding.ActivityMainBinding;
    
    public class MainActivity extends AppCompatActivity {
    
        public ActivityMainBinding bindingView;
        private ViewModel viewModel;  //声明ViewModel对象
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
            bindingView= DataBindingUtil.setContentView(this,R.layout.activity_main); //获取绑定好所有控件的主视图对象
    
            bindingView.start.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                   //生成ViewModel对象,将MainActivity对象传进去,待其内部调用
                    viewModel=new ViewModel(MainActivity.this); 
                   //为了让数据更新与用户操作(点击、滑动)相互相应,这个步骤一定要做
                    bindingView.setViewModel(viewModel);
                }
            });
            bindingView.add.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    if(viewModel!=null)
                        viewModel.add();
                }
            });
            bindingView.remove.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    if(viewModel!=null)
                        viewModel.remove();
                }
            });
    
        }
    }
    

    下面是关键的ViewModel.java 其中大部分代码都很常见,而DataBindingRecyclerViewAdapter这个适配器则是一个对于RecyclerView.Adapter的子类,里面不仅添加了点击事件,最重要的是当结合databinding使用,它是一个万能的适配器,

    • adapter = new DataBindingRecyclerViewAdapter(activity,R.layout.item_person,BR.person,personList);
      通过这一句代码就可适配任何实体数据了!!!!(前提是要用DataBinding)

    对这个适配器感兴趣的朋友,欢迎来我的Github star
    https://github.com/Ccapton/DataBinding-Librar-RecyclerView-all-purpose-Adapter

    import android.databinding.BaseObservable;
    import android.support.v7.widget.LinearLayoutManager;
    import android.view.View;
    import android.widget.Toast;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Created by CAPTON on 2017/9/24.
     */
    
    public class ViewModel extends BaseObservable {
    
        private MainActivity activity;
        private DataBindingRecyclerViewAdapter adapter;
        private List<Person> personList=new ArrayList<>();
    
        public ViewModel(final MainActivity activity){
            this.activity=activity;
    
            for (int i = 0; i < 10; i++) {
                Person p=new Person();
                p.name.set("热巴我老婆<^_^>  "+i);
                p.url.set("https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=150686889" +
                        "3&di=ce03509d972bd0d535a1fdcc20c9d202&imgtype=jpg&er=1&src=http%3A%2F%2Fn.sinaimg.cn%2Fent%2Ftransform%2F20170818%2FIAPS-fykcppx9377606.jpg");
                 personList.add(p);
            }
    
             adapter = new DataBindingRecyclerViewAdapter
                    (activity,R.layout.item_person,BR.person,personList);
            activity.bindingView.recyclerview.setLayoutManager(new LinearLayoutManager(activity,LinearLayoutManager.VERTICAL,false));
            activity.bindingView.recyclerview.setAdapter(adapter);
            adapter.setOnItemCkickListener(new DataBindingRecyclerViewAdapter.ItemClickListener() {
                @Override
                public void itemClick(View view, int position) {
                    Toast.makeText(activity,position+"",Toast.LENGTH_SHORT).show();
                }
            });
    
        }
    
        public void remove(){
            if(personList.size()!=0)
                personList.remove(0);
            adapter.notifyDataSetChanged();
        }
        public void add(){
            Person p=new Person();
            p.name.set("热巴我老婆<^_^>  我是新来的");
            p.url.set("https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=150686889" +
                    "3&di=ce03509d972bd0d535a1fdcc20c9d202&imgtype=jpg&er=1&src=http%3A%2F%2Fn.sinaimg.cn%2Fent%2Ftransform%2F20170818%2FIAPS-fykcppx9377606.jpg");
            personList.add(0,p);
            adapter.notifyDataSetChanged();
        }
    
        public List<Person> getPersonList() {
            return personList;
        }
    
        public void setPersonList(List<Person> personList) {
            this.personList = personList;
        }
    }
    

    接下来的都是一些次要的文件

    ContextUtil.java 在任何类中获取全局Context的工具类 首先要在Application中调用静态方法init(Context context);然后就能在任何类中获得全局Context对象了,这个工具我弄出来原因是,我要用到Glide加载网络图片,Glide要传入一个context对象才能加载图像。

    import android.content.Context;
    
    /**
     * Created by CAPTON on 2017/9/24.
     */
    
    public class ContextUtil {
        private static Context sContext;
        private static ContextUtil instance;
        public static void init(Context context){
            sContext=context;
            if(instance==null)
                instance=new ContextUtil();
        }
    
        public static ContextUtil getInstance(){
            return instance;
        }
    
        public  Context getAppContext(){
            return sContext;
        }
    }
    
    

    Person.java 数据实体类,里面的属性类型都是DataBinding提供的响应式数据类型

    import android.databinding.ObservableField;
    
    /**
     * Created by CAPTON on 2017/9/24.
     */
    
    public class Person {
        ObservableField<String>   name=new ObservableField<>();
        ObservableField<String>   url=new ObservableField<>();
    
        public ObservableField<String> getName() {
            return name;
        }
    
        public void setName(ObservableField<String> name) {
            this.name = name;
        }
    
        public ObservableField<String> getUrl() {
            return url;
        }
    
        public void setUrl(ObservableField<String> url) {
            this.url = url;
        }
    }
    

    ImageDataBindingAdapter.java 这个类我也不多说了,DataBinding提供的注解方案,用于控件属性设定的自定义方法。这个app:image属性可以在item_persion.xml中的ImageView中添加,用于设置显示的图片

    import android.databinding.BindingAdapter;
    import android.widget.ImageView;
    
    import com.bumptech.glide.Glide;
    
    /**
     * Created by CAPTON on 2017/9/24.
     */
    
    public class ImageDataBindingAdapter {
    
        @BindingAdapter("app:image")
        public static void setImage(ImageView imageView,String url){
            Glide.with(ContextUtil.getInstance().getAppContext()).load(url).into(imageView);
        }
    }
    
    

    布局文件

    activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <layout  xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        tools:context="com.example.capton.databindingdemo.MainActivity">
        <data>
           <variable
               name="viewModel"
               type="com.example.capton.databindingdemo.ViewModel"/>
        </data>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    <LinearLayout
        android:id="@+id/action"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/start"
            android:text="加载数据"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/remove"
            android:text="移除一项"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/add"
            android:text="增加一项"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
      <android.support.v7.widget.RecyclerView
          android:layout_below="@+id/action"
          android:id="@+id/recyclerview"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          >
      </android.support.v7.widget.RecyclerView>
    </RelativeLayout>
    </layout>
    

    item_persion.xml

    <?xml version="1.0" encoding="utf-8"?>
    <layout
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        >
      <data>
          <variable
              name="person"
              type="com.example.capton.databindingdemo.Person"/>
      </data>
    <LinearLayout
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="10dp"
        android:gravity="center_vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
          <ImageView
              app:image="@{person.url}"
              android:layout_width="100dp"
              android:layout_height="70dp" />
        <TextView
            android:text="@{person.name}"
            android:layout_margin="10dp"
            android:gravity="center_vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>
    </layout>
    

    以上就是根据我现在结合DataBinding运用MVVM模式显示、控制RecyclerView数据的全部内容。
    深夜码字,实属不容易
    欢迎来踩我的Github https://github.com/Ccapton 求star

    相关文章

      网友评论

        本文标题:Android周记一:利用DataBinding实现MVVM模式

        本文链接:https://www.haomeiwen.com/subject/dwlusxtx.html