-1

How can i invoke activity info for particular application ??

Sample: This is sample

Thanks for your help.

Glumix
  • 3
  • 1
  • This might help you http://stackoverflow.com/questions/4421527/start-android-application-info-screen http://stackoverflow.com/questions/11157102/how-i-can-start-application-info-screen-in-android – Tony Chhabada Dec 08 '13 at 11:32
  • You should avoid posting links to external code/images. What if that link gets removed? Please, eearn to include an image into a question, it's not difficult. – giampaolo Dec 08 '13 at 11:38

1 Answers1

0

From api level 9 and above you should be able to achieve what you want with the following:

Intent i = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
i.setData(Uri.parse("package:" + packageName));
startActivity(i);

Where packageName is for example: com.example.myapp

Magnus
  • 1,483
  • 11
  • 14