summaryrefslogtreecommitdiffstats
path: root/res/menu
diff options
context:
space:
mode:
authorSam Mortimer <sam@mortimer.me.uk>2014-11-25 14:18:22 -0800
committerMichael Bestas <mikeioannina@gmail.com>2016-01-03 14:44:44 -0800
commit7822cf9f28703bc48ab257ffe31ef2e22ae11149 (patch)
tree056dcbe9c4e798253990cc4ffc238b79d55e7566 /res/menu
parent556d77feaa524c5e9108139ef076dd73268b71d7 (diff)
downloadpackages_apps_Settings-7822cf9f28703bc48ab257ffe31ef2e22ae11149.zip
packages_apps_Settings-7822cf9f28703bc48ab257ffe31ef2e22ae11149.tar.gz
packages_apps_Settings-7822cf9f28703bc48ab257ffe31ef2e22ae11149.tar.bz2
[1/2] Settings AppOps: show/hide app type and allow/deny counters
Squash of: Author: Sam Mortimer <sam@mortimer.me.uk> Date: Thu Oct 3 13:51:31 2013 -0700 AppOps: menu options to show/hide user and system apps Change-Id: Ia55364c361db949a891e4b53a757ee4dff519eb6 Author: Sam Mortimer <sam@mortimer.me.uk> Author: Danny Baumann <dannybaumann@web.de> Date: Wed Oct 2 22:24:14 2013 -0700 [1/2] AppOps: Show allowed/ignored counts Change-Id: Ia27737155c33e934df9a2a1fcff88379240fd096 Author: Sam Mortimer <sam@mortimer.me.uk> Date: Sun Dec 1 21:39:07 2013 -0800 AppOps: only apply app type filters to summary screen *) If buildState() is called for a single package, do not apply hide user/system app filters. *) Fixes show detail display when called via long press in privacyguard and an AppOp hide filter is ticked. Change-Id: If31d094fb989836ab6829daeefe820695032c0ed Change-Id: I4d6f37b3923eb9bc98d67101d6f0ef481a427682
Diffstat (limited to 'res/menu')
-rw-r--r--res/menu/appops_manager.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/res/menu/appops_manager.xml b/res/menu/appops_manager.xml
new file mode 100644
index 0000000..f89b738
--- /dev/null
+++ b/res/menu/appops_manager.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:id="@+id/show_user_apps"
+ android:title="@string/app_ops_show_user_apps"
+ android:checkable="true" />
+ <item android:id="@+id/show_system_apps"
+ android:title="@string/app_ops_show_system_apps"
+ android:checkable="true" />
+ <item android:id="@+id/reset_counters"
+ android:title="@string/app_ops_reset_counters" />
+</menu>