diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2011-01-12 23:17:13 -0800 |
---|---|---|
committer | Svetoslav Ganov <svetoslavganov@google.com> | 2011-01-13 01:20:39 -0800 |
commit | bfc3ce78f4b9b4a720e48b3cc276e81a3fa8cfb2 (patch) | |
tree | 0bd6538653099ceaec594f093709f4b5f141572d /packages/SettingsProvider | |
parent | 7b0f8f08ac7b3ed5cf462b92283713b033d6a64a (diff) | |
download | frameworks_base-bfc3ce78f4b9b4a720e48b3cc276e81a3fa8cfb2.zip frameworks_base-bfc3ce78f4b9b4a720e48b3cc276e81a3fa8cfb2.tar.gz frameworks_base-bfc3ce78f4b9b4a720e48b3cc276e81a3fa8cfb2.tar.bz2 |
Updating the WebView accessibility key bindings after discussion with the access-eng team
Change-Id: I39a303864b94a8a11b6cded9b8bb23041ad91502
Diffstat (limited to 'packages/SettingsProvider')
-rw-r--r-- | packages/SettingsProvider/res/values/defaults.xml | 44 |
1 files changed, 26 insertions, 18 deletions
diff --git a/packages/SettingsProvider/res/values/defaults.xml b/packages/SettingsProvider/res/values/defaults.xml index ec5f853..5981139 100644 --- a/packages/SettingsProvider/res/values/defaults.xml +++ b/packages/SettingsProvider/res/values/defaults.xml @@ -81,26 +81,34 @@ <!-- Default for Settings.Secure.ACCESSIBILITY_WEB_CONTENT_KEY_BINDINGS --> <string name="def_accessibility_web_content_key_bindings" translatable="false"> - <!-- DPAD/Trackball UP maps to traverse previous on current axis and send an event. --> + <!-- DPAD/Trackball UP - traverse previous on current axis and send an event. --> 0x13=0x01000100; - <!-- DPAD/Trackball DOWN maps to traverse next on current axis and send an event. --> + <!-- DPAD/Trackball DOWN - traverse next on current axis and send an event. --> 0x14=0x01010100; - <!-- DPAD/Trackball LEFT maps to action in the android default navigation axis. --> - 0x15=0x04000100; - <!-- DPAD/Trackball RIGHT maps to no action in the android default navigation axis. --> - 0x16=0x04010100; - <!-- Left Alt+DPAD/Trackball UP transitions from an axis to another and sends an event. --> - <!-- Axis transitions: 2 -> 7; 1 -> 2; 0 -> 1; 3 -> 0; 4 -> 0; 5 -> 0; 6 -> 0; --> - 0x200000013=0x03020701:0x03010201:0x03000101:0x03030001:0x03040001:0x03050001:0x03060001; - <!-- Left Alt+DPAD/Trackball DOWN transitions from an axis to another and sends an event. --> - <!-- Axis transitions: 1 -> 0; 2 -> 1; 7 -> 2; 3 -> 7; 4 -> 7; 5 -> 7; 6 -> 7; --> - 0x200000014=0x03010001:0x03020101:0x03070201:0x03030701:0x03040701:0x03050701:0x03060701; - <!-- Left Alt+DPAD/Trackball LEFT transitions from an axis to another and sends an event. --> - <!-- Axis transitions: 4 -> 3; 5 -> 4; 6 -> 5; 0 -> 6; 1 -> 6; 2 -> 6; 7 -> 6; --> - 0x200000015=0x03040301:0x03050401:0x03060501:0x03000601:0x03010601:0x03020601:0x03070601; - <!-- Left Alt+DPAD/Trackball RIGHT transitions from an axis to another and sends an event. --> - <!-- Axis transitions: 5 -> 6; 4 -> 5; 3 -> 4; 2 -> 3; 7 -> 3; 1 -> 3; 0 -> 3; --> - 0x200000016=0x03050601:0x03040501:0x03030401:0x03020301:0x03070301:0x03010301:0x03000301; + <!-- DPAD/Trackball LEFT - traverse previous on the character navigation axis and send event. --> + 0x15=0x02000001; + <!-- DPAD/Trackball RIGHT - traverse next on the character navigation axis end send event. --> + 0x16=0x02010001; + <!-- Alt+DPAD/Trackball UP - go to the top of the document. --> + 0x200000013=0x02000601; + <!-- Alt+DPAD/Trackball DOWN - go to the bottom of the document. --> + 0x200000014=0x02010601; + <!-- Alt+DPAD/Trackball LEFT - transition from an axis to another and sends an event.--> + <!-- Axis transitions: 2 -> 1; --> + 0x200000015=0x03020101; + <!-- Alt+DPAD/Trackball RIGHT - transition from an axis to another and sends an event. --> + <!-- Axis transitions: 1 -> 2; --> + 0x200000016=0x03010201; + <!-- Alt+g - go to the previous heading and send an event. --> + 0x200000023=0x02000301; + <!-- Alt+h - go to the next heading and send an event. --> + 0x200000024=0x02010301; + <!-- Alt+COMMA - transition to sentence navigation axis and send an event. --> + <!-- Axis transitions: 7 -> 2; --> + 0x200000037=0x03070201; + <!-- Alt+PERIOD - transition to default web view behavior axis and send an event. --> + <!-- Axis transitions: 0 -> 7; 1 - > 7; 2 -> 7; --> + 0x200000038=0x03000701:0x03010701:0x03020701; </string> <!-- Default for Settings.System.USER_ROTATION --> |