对于我的Android项目,我需要全局单例Cache对象来通过应用程序访问有关用户的数据。
当应用程序进入后台并且使用其他应用程序一段时间后,我尝试在Cache对象中打开应用程序变量时出现问题。当我杀死应用程序并再次打开它时,一切都很好。 我使用依赖注入来访问Cache对象。 如果发生这种情况,为什么不会再次启动应用? 是否有一些注释可以在低内存条件下保持缓存变量?
这是我的缓存类
class Cache {
var categories : Array<BaseResponse.Category>? = null
var user : BaseResponse.User? = null
var options : BaseResponse.OptionsMap? = null
var order: MenuOrderDataModel? = null
}
这是DI的存储模块
@Module class StorageModule {
@Singleton @Provides fun getSharedPrefs(context: Context): SharedPreferences {
return PreferenceManager.getDefaultSharedPreferences(context)
}
@Singleton @Provides fun getCache() : Cache = Cache()
}
我注入对象@Inject lateinit var cache: Cache
,然后在启动画面中填充用户数据。
编辑 - 从应用程序和启动活动中添加了代码段
class MyApp : Application() {
val component: ApplicationComponent by lazy {
DaggerApplicationComponent
.builder()
.appModule(AppModule(this))
.build()
}
companion object {
@JvmStatic lateinit var myapp: MyApp
}
override fun onCreate() {
super.onCreate()
myapp= this
Fabric.with(this, Crashlytics())
}
}
启动活动:
class SplashActivity : AppCompatActivity(), View.OnClickListener {
@Inject lateinit var viewModel : ISplashViewModel
private lateinit var disposable : Disposable
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splash)
MyApp.myapp.component.inject(this)
}
答案 0 :(得分:14)