diff options
author | Matthew Xie <mattx@google.com> | 2011-08-08 20:29:18 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2011-08-18 16:31:30 -0700 |
commit | b707255a440e53ec2865c4b34c7ea07d16d471bd (patch) | |
tree | 4992ff5c27cef5081589c92ee48bae0dec45b67e /res | |
parent | 9403d8b2397cac1cb90e59eab1704a8df377149a (diff) | |
download | packages_apps_Settings-b707255a440e53ec2865c4b34c7ea07d16d471bd.zip packages_apps_Settings-b707255a440e53ec2865c4b34c7ea07d16d471bd.tar.gz packages_apps_Settings-b707255a440e53ec2865c4b34c7ea07d16d471bd.tar.bz2 |
Remember user choice for phone book access permission dialog
Change the always-allowed checkbox to be don't-ask-again checkbox to remember
user's decision so that user will not be bothered agian if he/she checks
the don't-ask-again checkbox
bug 5099661
Change-Id: If32ab8e93313bbd33ff040553083f0cf9359b69e
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/bluetooth_pb_access.xml | 4 | ||||
-rw-r--r-- | res/values/strings.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/bluetooth_pb_access.xml b/res/layout/bluetooth_pb_access.xml index 80f78a6..24f0df2 100644 --- a/res/layout/bluetooth_pb_access.xml +++ b/res/layout/bluetooth_pb_access.xml @@ -36,12 +36,12 @@ android:gravity="center_horizontal" android:textAppearance="?android:attr/textAppearanceMedium" /> - <CheckBox android:id="@+id/bluetooth_pb_alwaysallowed" + <CheckBox android:id="@+id/bluetooth_pb_remember_choice" style="?android:attr/textAppearanceMedium" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="2dip" - android:text="@string/bluetooth_pb_alwaysallowed" /> + android:text="@string/bluetooth_pb_remember_choice" /> </LinearLayout> diff --git a/res/values/strings.xml b/res/values/strings.xml index b777fd7..65875b0 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -323,7 +323,7 @@ <string name="bluetooth_pb_acceptance_dialog_text">%1$s would like to access your contacts and call history. Give access to %2$s?</string> <!-- Bluetooth phone book permission Alert Activity checkbox text [CHAR LIMIT=none] --> - <string name="bluetooth_pb_alwaysallowed">Always allowed?</string> + <string name="bluetooth_pb_remember_choice">Don\'t ask again</string> <!-- Date & time settings screen title --> <string name="date_and_time">Date & time settings</string> |