Reputation: 1009
I want to start manage application(Settings->Application->manage application) screen programatically. I am unable to do it. Can anyone please help me?
Thanks in advance.
Upvotes: 1
Views: 1620
Reputation: 40168
I think this could help you
Intent myIntent = new Intent( android.provider.Settings.ACTION_APPLICATION_SETTINGS );
startActivity(myIntent);
Upvotes: 3
Reputation: 11028
It can be achieved this way:
Intent intentSettings = new Intent();
intentSettings.setAction(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intentSettings);
Upvotes: 6