I have a standard preference page in my app. But from this preference page i want the user to be able to navigate to an other PreferenceScreen with a custom layout, when user presses "Manage Favorits.
This is the custom layout i have in mind:
Is it possible to use custom layout on "sub-preference-screens"?
Thanks!
Yes, you can launch a separate
activity
usingintent
.As long as you want to specify your own layout you would need to extend
Preference
class.Use
setLayoutResource()
to define your layout in your constructor. Constructor needs to beYou can also check this.