diff options
author | Lars Greiss <kufikugel@googlemail.com> | 2013-07-02 01:46:10 +0200 |
---|---|---|
committer | Danny Baumann <dannybaumann@web.de> | 2013-07-03 13:04:57 +0200 |
commit | deff1bd108333b3c997751a5dfb2f7731d7f6bda (patch) | |
tree | d7ff6a96504a0bfed19591deccdf5a9f6d512035 /res/xml/privacy_guard_prefs.xml | |
parent | 5aacfcbbe55f638d1f69933acb0821492c354b48 (diff) | |
download | packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.zip packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.tar.gz packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.tar.bz2 |
Settings: Introduce Privacy Guard Manager
Due that on the one hand a lot user are not familiar
with permissions and how to read them and on the
other user want to have a faster easy access to
setup privacy guard for several apps this small
manager assist the user to setup.
Privacy Guard Manager shows a list off all installed apps
Per default it shows only user apps which have critical
permissions privacy guard can protect.
The user can optional show in the list as well all system apps
or turn off the filter to show all apps undependent of the
permission the app has. To activate privacy guard for an
app a simple click on the entry activates it so that the user
can go fast trough the list. Longpress opens app detail page.
Initial help dialog tells the user how to use it.
Due the filter user who are unfimiliar with permissions can
fast see which apps are effected without deeper knowledge
cheers
SlimRoms
PatchSet3:
- go inline with AOSP style
- move PrivacyGuard by default into manager
- change behaviour off active icons
PatchSet4:
- change app icon size to 36dip
PatchSet5:
- string change
PatchSet6:
- add reset option to disable privacy guard for
all shown apps in the list
PatchSet7:
- Cleaned up the intro dialog a bit.
PatchSet8+9:
- cleanup
- fix alignment of top checkbox
PatchSet10:
- fix permission filter
PatchSet11:
- improve icon loading
Change-Id: I6bc886393bf90f8daed92b66d5fee1ce9e1accd0
Diffstat (limited to 'res/xml/privacy_guard_prefs.xml')
-rw-r--r-- | res/xml/privacy_guard_prefs.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/res/xml/privacy_guard_prefs.xml b/res/xml/privacy_guard_prefs.xml new file mode 100644 index 0000000..2cc82c1 --- /dev/null +++ b/res/xml/privacy_guard_prefs.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 Slimroms 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. +--> + +<PreferenceScreen + xmlns:android="http://schemas.android.com/apk/res/android"> + + <CheckBoxPreference + android:key="privacy_guard_default" + android:title="@string/privacy_guard_default_title" + android:summary="@string/privacy_guard_default_summary" + android:persistent="false" /> + +</PreferenceScreen> |