• Stars
    star
    144
  • Rank 255,590 (Top 6 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🏄 帮助你快速使用Android的LiveData与ViewModel,已支持SavedState

Saber

jitpack LICENSE 作者

本项目帮助你快速使用LiveData与ViewModel

  • 已适配AndroidX。

  • 支持Kotlin。

  • 支持 ViewModelAndroidViewModel。(默认为 ViewModel

  • 支持 observeobserveForever 两种观察模式。(默认为 observe

  • 支持 SingleLiveEventMediatorLiveDataMutableLiveData。(默认为 MutableLiveData

  • 支持 SavedState(仅AndroidX)

  • 支持自定义LiveData类型。

  • 支持事件总线的操作。

  • Forever模式自动取消订阅。

  • 支持注解处理器增量编译。

详细介绍

使用方式

添加依赖

    implementation 'com.github.simplezhli.saber:saber-api:0.3.1'
    //AndroidX使用
    implementation 'com.github.simplezhli.saber:saberx-api:0.3.1'

    annotationProcessor 'com.github.simplezhli.saber:saber-compiler:0.3.1'

首先创建一个类,使用@LiveData注解标记你要保存的数据。注意这里的参数名称value,下面会用到。

public class SeekBar {

    @LiveData
    Integer value;
}

当然也可以直接标记你的JavaBean,来直接保存此类。那么参数名为类名的首字母小写:seekBar

@LiveData
public class SeekBar {

    Integer value;
}

使用@LiveData(classType = LiveDataClassType.LIST)可以指定对应的数据集合类型

Build -- > Make Project 会生成代码如下:

public class SeekBarViewModel extends ViewModel {
  private MutableLiveData<Integer> mValue;

  public MutableLiveData<Integer> getValue() {
    if (mValue == null) {
      mValue = new MutableLiveData<>();
    }
    return mValue;
  }

  public Integer getValueValue() {
    return getValue().getValue();
  }

  public void setValue(Integer mValue) {
    if (this.mValue == null) {
      return;
    }
    this.mValue.setValue(mValue);
  }

  public void postValue(Integer mValue) {
    if (this.mValue == null) {
      return;
    }
    this.mValue.postValue(mValue);
  }
}

如果想使用AndroidViewModel的话,可以添加@AndroidViewModel注解

@AndroidViewModel
public class SeekBar {

    @LiveData
    Integer value;
}

自定义LiveData类型

public class Single {

    @LiveData(type = LiveDataType.OTHER, liveDataType = XXXLiveData.class)
    Integer value;
}

生成代码提供了LiveData的常用操作。

  • setXXX()要在主线程中调用。

  • postXXX()既可在主线程也可在子线程中调用。

  • getXXX()用于获取观察者。

  • getXXXValue()可以获取保存的数据。

  • addSource()用于监听LiveData。(MediatorLiveData专用)

  • removeSource()移除监听的LiveData。(MediatorLiveData专用)

1. 普通使用方法

一般情况下可以直接使用它。比如:

public class TestFragment extends Fragment {

    private SeekBar mSeekBar;

    @BindViewModel(isShare = true) //<--标记需要绑定的ViewModel
    SeekBarViewModel mSeekBarViewModel;
    
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View root = inflater.inflate(R.layout.fragment_test, container, false);
        mSeekBar = root.findViewById(R.id.seekBar);
        Saber.bind(this); // <--这里绑定ViewModel
        subscribeSeekBar();
        return root;
    }

    private void subscribeSeekBar() {

        mSeekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            @Override
            public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
                if (fromUser) {
                    mSeekBarViewModel.setValue(progress);
                }
            }
			......
        });
    }

    @OnChange(model = "mSeekBarViewModel") //<--接收变化的ViewModel变量名
    void setData(Integer value){ //注意这里使用 @LiveData 标记的参数名
        if (value != null) {
            mSeekBar.setProgress(value);
        }
    }
}

@BindViewModel用于绑定ViewModel。

@OnChange(model = "xxx")用于接收指定ViewModel的数据变化,可以不设置,默认model名称为mViewModel。

如果需要Fragment之间数据共享,需要@BindViewModel(isShare = true),当然也要保证传入相同的key值。默认key值是类的规范名称,也就是包名加类名。

这里写图片描述

所以一旦需要互通的Fragment类名或包名不一致,就无法数据共享。这时可以指定key值:@BindViewModel(key = "value")

2. 事件总线使用方法,详细用法参看LiveEventBus

    @LiveEventBus(model = "key_name")
    void liveDataBus(String value){
        
    }

发送:

    LiveEventBus.get().with("key_name").postValue("value");

更多的使用方法可以参看本项目demo。

3.Kotlin环境使用注意事项

1.将以下代码添加到 build.gradle 文件中,保证生成代码的正确性。

    kapt {
        correctErrorTypes = true
    }

2.Kotlin默认会生成set/get方法,并把属性设置为private 所以只要保证Kotlin中字段可见性不是private即可,简单解决可以在字段上添加 @JvmField,也可以使用lateinit.

    @BindViewModel
    lateinit var mViewModel: TestViewModel
    
    //
    
    @JvmField
    @BindViewModel
    var mViewModel: TestViewModel? = null

TODO

1.因为现有的@OnChange注解承载的功能过多,不易使用。后面会将EventBus功能从中提出,添加一个新的注解(或许叫做@LiveEventBus)。

2.有什么好的建议或者功能欢迎提Issues。

版本变化

Thanks For

License

Copyright 2018 simplezhli

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

More Repositories

1

flutter_deer

🦌 Flutter 练习项目(包括集成测试、可访问性测试)。内含完整UI设计图,更贴近真实项目的练习。Flutter practice project (including integration testing and accessibility testing). Contains complete UI design drawings for a more realistic practice project.
Dart
7,396
star
2

Tesseract-OCR-Scanner

[停止维护]基于Tesseract-OCR实现自动扫描识别手机号
Java
649
star
3

AndroidUT

Android开发中必要的一环---单元测试(Unit Test)
Java
496
star
4

RemoteControlView

【停止维护】一款万能遥控器的交互效果
Java
416
star
5

ChangeTabLayout

[停止维护]一款炫酷的TabLayout
Java
340
star
6

flutter_remote_control

flutter remote control
Dart
175
star
7

flutter_2d_amap

Flutter 高德2D地图插件(支持Android、iOS、Web)
Dart
167
star
8

RxPay

【停止维护】支付宝、微信支付快速集成
Java
47
star
9

RecyclerViewExtensionsDemo

RecyclerView列表优化方案
Java
43
star
10

Dagger2Example

[停止维护]Dagger2简单使用,推荐使用Jetpack Hilt。
Java
39
star
11

RxBindingExample

[停止维护]RxBinding使用例子
Java
25
star
12

SAFExample

SAF(Storage Access Framework)使用例子
Java
21
star
13

flutter_riverpod_examples

Dart
20
star
14

AspectJDemo

AspectJ Demo
Java
13
star
15

RedEnvelopeService

[停止维护]抢红包助手
Java
11
star
16

ZCarouselView

[停止维护]一种轮播图效果
Java
7
star
17

flutter_video_player

利用官方video_player项目结构,使用外接纹理的方式接入阿里云点播SDK。个人练习,仅供参考。
Dart
3
star
18

flutter_ffi

C++
2
star
19

rn-learning

React Native练习Demo
JavaScript
1
star
20

simplezhli

1
star