ProtopopovIgorAlidi
ProtopopovIgorAlidi
Thank You, I create my own MvpPreferenceActivity. But I couldn't make it complete MVP. For example I have some ListPreference and set OnPreferenceChangeListener into it. It works well but without...
Yes. To show preference screen I use https://developer.android.com/reference/android/preference/PreferenceFragment There is no setContentView(R.layout...), but have addPreferencesFromResource(R.xml...) There defined preferences showed on the screen
Thank You, catch the idea. I am implementing this. In addition, required to override onClick of listpreference to avoid automatic open list, and call presenter here.