开发者

How to start manage application screen in android

开发者 https://www.devze.com 2023-02-08 07:00 出处:网络
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?

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

精彩评论

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