How To Go From An Activity To Preferencefragment?
I am having trouble navigating from my main page which is an Activity to the account settings page which uses PreferenceFragment. I'm trying to achieve this via the navigation dra
Solution 1:
You need to use getFragmentManager
for PreferenceFragment. Because they don't extend the support v4 version of Fragment class.
Post a Comment for "How To Go From An Activity To Preferencefragment?"