LoginPreferences用于保留具有sharedPreference的数据。
private const val PREF_LOGIN_NAME = "loginName"
private const val PREF_LOGIN_PASS = "loginPass"
object LoginPreferences {
fun getStoredName(context: Context): String {
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
return prefs.getString(PREF_LOGIN_NAME, "")!!
}
fun setStoredName(context: Context, query: String) {
PreferenceManager.getDefaultSharedPreferences(context)
.edit()
.putString(PREF_LOGIN_NAME, query)
.apply()
}
fun getStoredPass(context: Context): String {
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
return prefs.getString(PREF_LOGIN_PASS, "")!!
}
fun setStoredPass(context: Context, query: String) {
PreferenceManager.getDefaultSharedPreferences(context)
.edit()
.putString(PREF_LOGIN_PASS, query)
.apply()
}
}
LoginViewModel是一个ViewModel,使用sharedPreferences可以在fragment_login.xml中观察到数据绑定。
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable
name="loginViewModel"
type="com.example.login.LoginViewModel" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout>
...
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
但是,如果我希望LoginViewModel与sharedPreference和可观察的数据绑定一起使用,它将报告一个one super class
错误。
// (private val app: Application) : AndroidViewModel(app) is used to access to the sharedPreference.
// BaseObservable() is used to observe the data binding in xml file.
class LoginViewModel(private val app: Application) : AndroidViewModel(app), BaseObservable() {
...
}