I have a notification that, when clicked, takes the user to my app's preferences menu. That menu also has a nested PreferenceScreen
. What I'm trying to accomplish is: when the notification is clicked, it brings the user to the nested PreferenceScreen
.
Is this possible? Here's what I currently have (gets me to the main preferences menu):
PendingIntent intent = PendingIntent.getActivity(getApplicationContext(), 0, new Intent(getApplicationContext(), MyPreferencesActivity.class), 0);