diff options
author | Eric Fischer <enf@google.com> | 2009-09-30 18:03:47 -0700 |
---|---|---|
committer | Eric Fischer <enf@google.com> | 2009-09-30 18:03:47 -0700 |
commit | ec1f8a2ecedb4904ca93bce14b4e1e033539fa55 (patch) | |
tree | 77cdf659a63f127923fe63c992ac8669012c15c7 /core/java/android/text/method | |
parent | bcbca57f4c0da0cee3682c78aacfa081483f0020 (diff) | |
download | frameworks_base-ec1f8a2ecedb4904ca93bce14b4e1e033539fa55.zip frameworks_base-ec1f8a2ecedb4904ca93bce14b4e1e033539fa55.tar.gz frameworks_base-ec1f8a2ecedb4904ca93bce14b4e1e033539fa55.tar.bz2 |
Add Turkish accented letters for G and S on the hard keyboard.
Bug 2158331
Diffstat (limited to 'core/java/android/text/method')
-rw-r--r-- | core/java/android/text/method/QwertyKeyListener.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/text/method/QwertyKeyListener.java b/core/java/android/text/method/QwertyKeyListener.java index f736f85..2e76470 100644 --- a/core/java/android/text/method/QwertyKeyListener.java +++ b/core/java/android/text/method/QwertyKeyListener.java @@ -405,12 +405,13 @@ public class QwertyKeyListener extends BaseKeyListener { PICKER_SETS.put('C', "\u00C7\u0106\u010C"); PICKER_SETS.put('D', "\u010E"); PICKER_SETS.put('E', "\u00C8\u00C9\u00CA\u00CB\u0118\u011A\u0112"); + PICKER_SETS.put('G', "\u011E"); PICKER_SETS.put('L', "\u0141"); PICKER_SETS.put('I', "\u00CC\u00CD\u00CE\u00CF\u012A\u0130"); PICKER_SETS.put('N', "\u00D1\u0143\u0147"); PICKER_SETS.put('O', "\u00D8\u0152\u00D5\u00D2\u00D3\u00D4\u00D6\u014C"); PICKER_SETS.put('R', "\u0158"); - PICKER_SETS.put('S', "\u015A\u0160"); + PICKER_SETS.put('S', "\u015A\u0160\u015E"); PICKER_SETS.put('T', "\u0164"); PICKER_SETS.put('U', "\u00D9\u00DA\u00DB\u00DC\u016E\u016A"); PICKER_SETS.put('Y', "\u00DD\u0178"); @@ -419,12 +420,13 @@ public class QwertyKeyListener extends BaseKeyListener { PICKER_SETS.put('c', "\u00E7\u0107\u010D"); PICKER_SETS.put('d', "\u010F"); PICKER_SETS.put('e', "\u00E8\u00E9\u00EA\u00EB\u0119\u011B\u0113"); + PICKER_SETS.put('g', "\u011F"); PICKER_SETS.put('i', "\u00EC\u00ED\u00EE\u00EF\u012B\u0131"); PICKER_SETS.put('l', "\u0142"); PICKER_SETS.put('n', "\u00F1\u0144\u0148"); PICKER_SETS.put('o', "\u00F8\u0153\u00F5\u00F2\u00F3\u00F4\u00F6\u014D"); PICKER_SETS.put('r', "\u0159"); - PICKER_SETS.put('s', "\u00A7\u00DF\u015B\u0161"); + PICKER_SETS.put('s', "\u00A7\u00DF\u015B\u0161\u015F"); PICKER_SETS.put('t', "\u0165"); PICKER_SETS.put('u', "\u00F9\u00FA\u00FB\u00FC\u016F\u016B"); PICKER_SETS.put('y', "\u00FD\u00FF"); |