megZo
megZo

Reputation: 704

some settings on android

I want to read the following settings set by the user on the device in my android app(android 4.0+):

  1. if Notifications are enabled
  2. if 'Encrypt phone' is enabled
  3. find the limit on the number of text and Multimedia messages.

Any help or leads would be wonderful! Thanks.

Upvotes: 3

Views: 112

Answers (1)

Sam R.
Sam R.

Reputation: 16450

AFAIK, notifications are specific to applications. You can only disable or enable them for each application on Android 4.1 and above.

For Encryption status, you may use getStorageEncryptionStatus() in DevicePolicyManager.

Upvotes: 2

Related Questions