summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2011-06-15 10:31:41 -0700
committerJeff Sharkey <jsharkey@android.com>2011-06-15 10:31:49 -0700
commitdd6efe17e0f2e34dfc0d7bea9e2382a3d48fb775 (patch)
treeaa6bac6e840ba9a8d32bce3cab380a1ca6c59e8c /AndroidManifest.xml
parentaa5260e40a162c8990830da7648f0c850350360c (diff)
downloadpackages_apps_Settings-dd6efe17e0f2e34dfc0d7bea9e2382a3d48fb775.tar.gz
packages_apps_Settings-dd6efe17e0f2e34dfc0d7bea9e2382a3d48fb775.tar.bz2
packages_apps_Settings-dd6efe17e0f2e34dfc0d7bea9e2382a3d48fb775.zip
Handle data warning/limit notification actions.
Respond to user interaction with data warning/limit notifications shown by NetworkPolicyManager. Show correct tab for the template that triggered notification. When data is disabled, prompt user with dialog and option to re-enable. Change-Id: I73aeecc0e840fffa2b4cdb90af269115ed0ab56c
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 8f8600294..25eced10c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1133,7 +1133,12 @@
android:label="@string/data_usage_summary_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
- <action android:name="android.intent.action.DATA_USAGE_SUMMARY" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ <intent-filter>
+ <!-- actions from NetworkPolicyManager notifications -->
+ <action android:name="android.intent.action.DATA_USAGE_WARNING" />
+ <action android:name="android.intent.action.DATA_USAGE_LIMIT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"