我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android实现MVVM架构数据刷新流程是什么

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android实现MVVM架构数据刷新流程是什么

这篇文章主要讲解了“Android实现MVVM架构数据刷新流程是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android实现MVVM架构数据刷新流程是什么”吧!

效果图

Android实现MVVM架构数据刷新流程是什么

示例结构图

Android实现MVVM架构数据刷新流程是什么

代码解析

导入dataBinding
 dataBinding{            enabled = true        }
实体类

继承BaseObservable

public class Sensor extends BaseObservable

为字段添加@Bindable

 @Bindable    public String getTmpValue() {        return tmpValue;    }

显示图片

图片添加@BindingAdapter

@BindingAdapter( "tmpImage" )

示例采用本地图片,没有采用网络图片

@BindingAdapter( "tmpImage" )    public static void setTmpImage(ImageView view, int tmpImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( tmpImage ) );    }

为图片路径绑定字段

@Bindable    public int getTmpImage() {        return tmpImage;    }

绑定实体类

<layout    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">    <data>        <variable            name="viewmodel"            type="com.franzliszt.refreshdata.viewmodel.ViewModel" />    </data>    <layout/>

根据设置@BindingAdapter( “tmpImage” )设置里的内容,设置属性

<ImageView    android:layout_width="0dp"    android:layout_weight="1"    android:layout_height="50dp"    tmpImage="@{viewmodel.sensor.tmpImage}"    android:scaleType="fitCenter"/>

实体类全部代码

public class Sensor extends BaseObservable {    private String tmpValue;    private String humValue;    private String lightValue;    private String humanValue;    private String smokeValue;    private String fireValue;    private int tmpImage;    private int humImage;    private int lightImage;    private int humanImage;    private int smokeImage;    private int fireImage;    public Sensor(){    }    public Sensor(int tmpImage,int humImage,int lightImage,int humanImage,int smokeImage,int fireImage){        this.tmpImage = tmpImage;        this.humImage = humImage;        this.lightImage = lightImage;        this.humanImage = humanImage;        this.smokeImage = smokeImage;        this.fireImage = fireImage;    }    @Bindable    public String getTmpValue() {        return tmpValue;    }    public void setTmpValue(String tmpValue) {        this.tmpValue = tmpValue;        notifyPropertyChanged( BR.tmpValue );    }    @Bindable    public String getHumValue() {        return humValue;    }    public void setHumValue(String humValue) {        this.humValue = humValue;        notifyPropertyChanged( BR.humValue );    }    @Bindable    public String getLightValue() {        return lightValue;    }    public void setLightValue(String lightValue) {        this.lightValue = lightValue;        notifyPropertyChanged( BR.lightValue );    }    @Bindable    public String getHumanValue() {        return humanValue;    }    public void setHumanValue(String humanValue) {        this.humanValue = humanValue;        notifyPropertyChanged( BR.humanValue );    }    @Bindable    public String getSmokeValue() {        return smokeValue;    }    public void setSmokeValue(String smokeValue) {        this.smokeValue = smokeValue;        notifyPropertyChanged( BR.smokeValue );    }    @Bindable    public String getFireValue() {        return fireValue;    }    public void setFireValue(String fireValue) {        this.fireValue = fireValue;        notifyPropertyChanged( BR.fireValue );    }    @Bindable    public int getTmpImage() {        return tmpImage;    }    @BindingAdapter( "tmpImage" )    public static void setTmpImage(ImageView view, int tmpImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( tmpImage ) );    }    @Bindable    public int getLightImage() {        return lightImage;    }    @BindingAdapter( "lightImage" )    public static void setLightImage(ImageView view,int lightImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( lightImage ) );    }    @Bindable    public int getHumanImage() {        return humanImage;    }    @BindingAdapter( "humanImage" )    public static void setHumanImage(ImageView view,int humanImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( humanImage ) );    }    @Bindable    public int getSmokeImage() {        return smokeImage;    }    @BindingAdapter( "smokeImage" )    public static void setSmokeImage(ImageView view,int smokeImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( smokeImage ) );    }    @Bindable    public int getFireImage() {        return fireImage;    }    @BindingAdapter( "fireImage" )    public static void setFireImage(ImageView view,int fireImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( fireImage ) );    }    @Bindable    public int getHumImage() {        return humImage;    }    @BindingAdapter( "humImage" )    public static void setHumImage(ImageView view,int humImage) {        view.setImageDrawable( view.getContext().getResources().getDrawable( humImage ) );    }}
xml视图
<?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"    xmlns:tools="http://schemas.android.com/tools">    <data>        <variable            name="viewmodel"            type="com.franzliszt.refreshdata.viewmodel.ViewModel" />    </data><LinearLayout    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context=".view.MainActivity"    android:layout_margin="30dp"><LinearLayout    android:layout_width="match_parent"    android:layout_height="0dp"    android:layout_weight="1"    android:background="@drawable/item_bg_style"    android:layout_marginTop="20dp"    android:paddingTop="10dp"><ImageView    android:layout_width="0dp"    android:layout_weight="1"    android:layout_height="50dp"    tmpImage="@{viewmodel.sensor.tmpImage}"    android:scaleType="fitCenter"/>   <TextView       android:layout_width="0dp"       android:layout_weight="1"       android:layout_height="50dp"       android:text="温度值:"       android:textColor="#ffffff"       android:textSize="20sp"       android:gravity="center"/>    <TextView        android:layout_width="0dp"        android:layout_weight="1"        android:layout_height="50dp"        android:text="@{viewmodel.sensor.tmpValue}"        android:textColor="#ffffff"        android:textSize="25sp"        android:gravity="center"/></LinearLayout>        <LinearLayout            android:layout_width="match_parent"            android:layout_height="0dp"            android:layout_weight="1"            android:background="@drawable/item_bg_style"            android:layout_marginTop="20dp"            android:paddingTop="10dp">            <ImageView                android:layout_width="0dp"                android:layout_weight="1"                android:layout_height="50dp"                humImage="@{viewmodel.sensor.humImage}"                android:scaleType="fitCenter"/>            <TextView                android:layout_width="0dp"                android:layout_weight="1"                android:layout_height="50dp"                android:text="湿度值:"                android:textColor="#ffffff"                android:textSize="20sp"                android:gravity="center"/>            <TextView                android:layout_width="0dp"                android:layout_weight="1"                android:layout_height="50dp"                android:text="@{viewmodel.sensor.humValue}"                android:textColor="#ffffff"                android:textSize="25sp"                android:gravity="center"/>        </LinearLayout>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@drawable/item_bg_style"        android:layout_marginTop="20dp"        android:paddingTop="10dp">        <ImageView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            lightImage="@{viewmodel.sensor.lightImage}"            android:scaleType="fitCenter"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="光照值:"            android:textColor="#ffffff"            android:textSize="20sp"            android:gravity="center"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="@{viewmodel.sensor.lightValue}"            android:textColor="#ffffff"            android:textSize="25sp"            android:gravity="center"/>    </LinearLayout>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@drawable/item_bg_style"        android:layout_marginTop="20dp"        android:paddingTop="10dp">        <ImageView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            smokeImage="@{viewmodel.sensor.smokeImage}"            android:scaleType="fitCenter"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="烟雾值:"            android:textColor="#ffffff"            android:textSize="20sp"            android:gravity="center"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="@{viewmodel.sensor.smokeValue}"            android:textColor="#ffffff"            android:textSize="25sp"            android:gravity="center"/>    </LinearLayout>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@drawable/item_bg_style"        android:layout_marginTop="20dp"        android:paddingTop="10dp">        <ImageView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            fireImage="@{viewmodel.sensor.fireImage}"            android:scaleType="fitCenter"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="火焰值:"            android:textColor="#ffffff"            android:textSize="20sp"            android:gravity="center"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="@{viewmodel.sensor.fireValue}"            android:textColor="#ffffff"            android:textSize="25sp"            android:gravity="center"/>    </LinearLayout>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@drawable/item_bg_style"        android:layout_marginTop="20dp"        android:paddingTop="10dp">        <ImageView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            humanImage="@{viewmodel.sensor.humanImage}"            android:scaleType="fitCenter"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="人体红外:"            android:textColor="#ffffff"            android:textSize="20sp"            android:gravity="center"/>        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="50dp"            android:text="@{viewmodel.sensor.humanValue}"            android:textColor="#ffffff"            android:textSize="25sp"            android:gravity="center"/>    </LinearLayout>    </LinearLayout></layout>
VM

接收数据

调用Handle类的接口,接收传感器数据(随机数据)

  private void InitData(){       handle.setHandleDta( new Handle.HandleData() {           @Override           public void getSensorValue(int[] value) {                 new Thread( ()->{                  while (true){                      try {                          Thread.sleep( 5000 );                      } catch (InterruptedException e) {                          e.printStackTrace();                      }                      sensor.setTmpValue( value[0]+"℃");                      sensor.setHumValue( value[1]+"RH" );                      sensor.setLightValue( value[2]+"LUX" );                      sensor.setSmokeValue( value[3]+"%" );                      sensor.setFireValue( value[4]+"%" );                      sensor.setHumanValue( value[5] == 1 ? "有人" : "无人" );                  }              } ).start();          }      });  }

发送数据

建立接口,回调数据

  public interface HandleData{        void getSensorValue(int[] value);    }    public void setHandleDta(HandleData handleDta){        int[] value = ReturnData();        handleDta.getSensorValue(value);    }

制造数据

private void RefreshSensorValue(){          thread = new Thread( ()->{            while (true){                try {                    Thread.sleep( 2000 );                } catch (InterruptedException e) {                    e.printStackTrace();                }                                value[0] = RandomRange(35,30);                                value[1] = RandomRange(80,75);                                value[2] = RandomRange(120,100);                                value[3] = RandomRange(60,50);                                value[4] = RandomRange(30,25);                                value[5] = RandomRange(2,0);                Log.d( "TAG",value[5]+"" );            }        } );        thread.start();    }
绑定视图与数据层
public class MainActivity extends AppCompatActivity {    private ActivityMainBinding binding;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate( savedInstanceState );        binding = DataBindingUtil.setContentView( this,R.layout.activity_main );        binding.setViewmodel( new ViewModel() );    }}

感谢各位的阅读,以上就是“Android实现MVVM架构数据刷新流程是什么”的内容了,经过本文的学习后,相信大家对Android实现MVVM架构数据刷新流程是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android实现MVVM架构数据刷新流程是什么

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android实现MVVM架构数据刷新流程是什么

这篇文章主要讲解了“Android实现MVVM架构数据刷新流程是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android实现MVVM架构数据刷新流程是什么”吧!效果图示例结构图代码解
2023-06-25

数据库周刊28│开发者最喜爱的数据库是什么?阿里云脱口秀聊程序员转型;MySQL update误操作;PG流复制踩坑;PG异机归档;MySQL架构选型;Oracle技能表;Oracle文件损坏处理……

墨天轮数据库周刊第28期发布啦,每周1次推送本周数据库相关热门资讯、精选文章、干货文档。本周分享 开发者最喜爱的数据库是什么?阿里云脱口秀爆聊程序员转型;MySQL update误操作后进行数据库恢复;PG流复制踩坑;PG异机归档;MySQL架构选型案例;or
数据库周刊28│开发者最喜爱的数据库是什么?阿里云脱口秀聊程序员转型;MySQL update误操作;PG流复制踩坑;PG异机归档;MySQL架构选型;Oracle技能表;Oracle文件损坏处理……
2014-10-19

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录