Search code examples
androidandroid-intentandroid-activityandroid-source

What's the name of the Android Privacy Settings Activity?


I can start the Android Privacy Settings Activity with the following code:

Intent i = new Intent();
i.setAction(Settings.ACTION_PRIVACY_SETTINGS);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if(i != null) {
    getApplication().startActivity(i);
}

I would like to know where I can find this Activity on the Android's Source-code.


Solution

  • The actual Activity is com.android.settings.Settings.java.

    When you pass that intent, it loads it with the Fragment com.android.settings.PrivacySettings.java