diff options
author | Eric Fischer <enf@google.com> | 2009-11-17 16:28:30 -0800 |
---|---|---|
committer | Eric Fischer <enf@google.com> | 2009-11-17 16:28:30 -0800 |
commit | d7c432bf7f9c0c9dd6d954fffcd68828c0e309a5 (patch) | |
tree | 4effb130d57a3cfcae20cd8b17dcc9e1b1503451 | |
parent | 6bcd99c2a63338254c68e27e40e5395cbdd3e1ef (diff) | |
download | frameworks_base-d7c432bf7f9c0c9dd6d954fffcd68828c0e309a5.zip frameworks_base-d7c432bf7f9c0c9dd6d954fffcd68828c0e309a5.tar.gz frameworks_base-d7c432bf7f9c0c9dd6d954fffcd68828c0e309a5.tar.bz2 |
Add vertical bar to the alt-space character picker for the hardware keyboard.
Bug 2242177
Approver: jerryw
-rw-r--r-- | core/java/android/text/method/QwertyKeyListener.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/text/method/QwertyKeyListener.java b/core/java/android/text/method/QwertyKeyListener.java index 2e76470..b3926f2 100644 --- a/core/java/android/text/method/QwertyKeyListener.java +++ b/core/java/android/text/method/QwertyKeyListener.java @@ -432,7 +432,7 @@ public class QwertyKeyListener extends BaseKeyListener { PICKER_SETS.put('y', "\u00FD\u00FF"); PICKER_SETS.put('z', "\u017A\u017C\u017E"); PICKER_SETS.put(KeyCharacterMap.PICKER_DIALOG_INPUT, - "\u2026\u00A5\u2022\u00AE\u00A9\u00B1[]{}\\"); + "\u2026\u00A5\u2022\u00AE\u00A9\u00B1[]{}\\|"); PICKER_SETS.put('/', "\\"); // From packages/inputmethods/LatinIME/res/xml/kbd_symbols.xml |