user519846
user519846

Reputation: 1009

How to start manage application screen in android

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

Answers (2)

Tanmay Mandal
Tanmay Mandal

Reputation: 40168

I think this could help you

Intent myIntent = new Intent( android.provider.Settings.ACTION_APPLICATION_SETTINGS );
startActivity(myIntent);

Upvotes: 3

Zelimir
Zelimir

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

Related Questions