diff options
author | Mike Cleron <mcleron@google.com> | 2013-02-01 18:36:41 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-02-01 18:36:41 +0000 |
commit | d1ed3cea37e4156eab14b7dc8207a520c9eab700 (patch) | |
tree | cdc028be2b0ce578141384b6fe5c3b1b457ce078 /core | |
parent | 0a9c7c144671f70f5f1af222050bd3ec6b11fe41 (diff) | |
download | frameworks_base-d1ed3cea37e4156eab14b7dc8207a520c9eab700.zip frameworks_base-d1ed3cea37e4156eab14b7dc8207a520c9eab700.tar.gz frameworks_base-d1ed3cea37e4156eab14b7dc8207a520c9eab700.tar.bz2 |
Revert "Fixing backwards cmpatibility for enabling explore by touch"
This reverts commit 0a9c7c144671f70f5f1af222050bd3ec6b11fe41
Change-Id: I8da530a6d0a57163522d5a63326e787a8d22ecbf
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/accessibilityservice/AccessibilityServiceInfo.java | 10 | ||||
-rw-r--r-- | core/java/android/provider/Settings.java | 1 | ||||
-rw-r--r-- | core/res/res/values/strings.xml | 23 |
3 files changed, 4 insertions, 30 deletions
diff --git a/core/java/android/accessibilityservice/AccessibilityServiceInfo.java b/core/java/android/accessibilityservice/AccessibilityServiceInfo.java index d12a336..ef7186b 100644 --- a/core/java/android/accessibilityservice/AccessibilityServiceInfo.java +++ b/core/java/android/accessibilityservice/AccessibilityServiceInfo.java @@ -150,18 +150,10 @@ public class AccessibilityServiceInfo implements Parcelable { * flag does not guarantee that the device will not be in touch exploration * mode since there may be another enabled service that requested it. * <p> - * For accessibility services targeting API version higher than - * {@link Build.VERSION_CODES#JELLY_BEAN_MR1} that want to set - * this flag have to request the + * Clients that want to set this flag have to request the * {@link android.Manifest.permission#CAN_REQUEST_TOUCH_EXPLORATION_MODE} * permission or the flag will be ignored. * </p> - * <p> - * Services targeting API version equal to or lower than - * {@link Build.VERSION_CODES#JELLY_BEAN_MR1} will work normally, i.e. - * the first time they are run, if this flag is specified, a dialog is - * shown to the user to confirm enabling explore by touch. - * </p> */ public static final int FLAG_REQUEST_TOUCH_EXPLORATION_MODE = 0x0000004; diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 3d850cf..be21fb4 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -3351,6 +3351,7 @@ public final class Settings { * * @hide */ + @Deprecated public static final String TOUCH_EXPLORATION_GRANTED_ACCESSIBILITY_SERVICES = "touch_exploration_granted_accessibility_services"; diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index aae509e..8f8f32d 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -950,8 +950,8 @@ <string name="permlab_canRequestEnahncedWebAccessibility">request enhanced web accessibility</string> <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permdesc_canRequestEnahncedWebAccessibility">Allows the hoder to request - enabling of web accessibility enhancements. For example, installing scripts to make - app content more accessible.</string> + enabling of web accessibility enhancements. For example, installing scripts from + Google to make app content more accessible.</string> <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permlab_bindTextService">bind to a text service</string> @@ -2714,25 +2714,6 @@ <!-- SearchView accessibility description for voice button [CHAR LIMIT=NONE] --> <string name="searchview_description_voice">Voice search</string> - <!-- Title for a warning message about the interaction model changes after allowing an accessibility - service to put the device into explore by touch mode, displayed as a dialog message when - the user selects to enables the service. (default). [CHAR LIMIT=45] --> - <string name="enable_explore_by_touch_warning_title">Enable Explore by Touch?</string> - <!-- Summary for a warning message about the interaction model changes after allowing an accessibility - service to put the device into explore by touch mode, displayed as a dialog message when - the user selects to enables the service. (tablet). [CHAR LIMIT=NONE] --> - <string name="enable_explore_by_touch_warning_message" product="tablet"> - <xliff:g id="accessibility_service_name">%1$s</xliff:g> wants to enable Explore by Touch. - When Explore by Touch is turned on, you can hear or see descriptions of what\'s under - your finger or perform gestures to interact with the tablet.</string> - <!-- Summary for a warning message about the interaction model changes after allowing an accessibility - service to put the device into explore by touch mode, displayed as a dialog message when - the user selects to enables the service. (default). [CHAR LIMIT=NONE] --> - <string name="enable_explore_by_touch_warning_message" product="default"> - <xliff:g id="accessibility_service_name">%1$s</xliff:g> wants to enable Explore by Touch. - When Explore by Touch is turned on, you can hear or see descriptions of what\'s under - your finger or perform gestures to interact with the phone.</string> - <!-- String used to display the date. This is the string to say something happened 1 month ago. --> <string name="oneMonthDurationPast">1 month ago</string> <!-- String used to display the date. This is the string to say something happened more than 1 month ago. --> |