具有sharedPreferences的可观察ViewModel

时间:2020-01-06 08:46:38

标签: android kotlin sharedpreferences android-viewmodel

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() {

    ...
}

0 个答案:

没有答案