1

I am trying to have a shortcut to the device admin settings page on my Widget.

I have looked at the AndroidManifest.xml (for the standard Android Settings App) for the Intent string, but it doesn't seem to be there, any ideas where it would be?

Thanks!

Alex Lockwood
  • 83,063
  • 39
  • 206
  • 250
Ash McConnell
  • 1,340
  • 1
  • 17
  • 28

1 Answers1

1

As per the answer here you can launch an Intent with any string from the android.provider.Settings class, with different ones for different things. The list of available strings is here.

Community
  • 1
  • 1
Martin Foot
  • 3,594
  • 3
  • 28
  • 35
  • Thanks Martin, I have been using that list, but it doesn't seem to be exhaustive. I have been able to find quite a few more in the Android Settings App's AndroidManifest.xml, but for DeviceAdminSettings it just lists the generic: - . I thought there might have been a bigger list somewhere. Thanks for your help! – Ash McConnell Aug 25 '11 at 13:19
  • 1
    Did you find the appropriate Intent for Device Admin Ash? If so please share. – David Shellabarger May 03 '12 at 02:39