开发者

How to start manage application screen in android

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);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜