美文网首页
Android BaseViewModel

Android BaseViewModel

作者: ryanxun | 来源:发表于2021-06-24 08:12 被阅读0次
嘿,今天的你过的还好吗

更新一下贼轻松的ViewModel

import androidx.lifecycle.ViewModel;

public class BaseViewModel extends ViewModel {
    protected final String TAG = "sansuiban";
    @Override
    protected void onCleared() {
        super.onCleared();
    }
}

没更新动态或者频繁更新动态的时候都是在认真生活

相关文章

网友评论

      本文标题:Android BaseViewModel

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