I want to start manage application(Settings->Application->manage applicatio开发者_StackOverflow中文版n) screen programatically. I am unable to do it. Can anyone please help me?
Thanks in advance.
It can be achieved this way:
Intent intentSettings = new Intent();
intentSettings.setAction(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intentSettings);
I think this could help you
Intent myIntent = new Intent( android.provider.Settings.ACTION_APPLICATION_SETTINGS );
startActivity(myIntent);
精彩评论