是否存在可用于存储应用程序活动或片段中的状态(单个事实来源)的现有Android component library
?
当前,我将Application扩展为存储这些数据,但发现效率不高:
public class AppState extends Application {
private int name;
public int getName() {
return name;
}
public void setName(int name) {
this.name = name;
}
}
有了这个,我可以在整个应用程序中保存和检索状态。
您如何看待该解决方案?我也在应用程序中使用Android Architecture components
。
我打算在Android Native应用中使用类似Redux
之类的东西,这是一个好习惯吗?
内容提供商?