aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/KeyboardSwitcher.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Keyboard XML supports switch-case-default tags to select rows and keysTadashi G. Takaoka2010-11-121-116/+46
| | | | Change-Id: I0d92e513757e765d9de98561205754af5a143650
* Rename KeyboardSwitcher.setKeyboardMode to loadKeyboardTadashi G. Takaoka2010-11-111-130/+147
| | | | | | | This change also eliminates KeyboardSwitcher.refreshKeyboardCache, LatinIME.reloadKeyboards() and LanguageSwicther.getLocales(). Change-Id: I5fd4914660ea1c955ddfa0ca62b920f9bcd53e1b
* Refactor KeyboardSwitch.KeyboardId classTadashi G. Takaoka2010-11-101-86/+89
| | | | | | | | | This change defers determining which keyboard should be loaded and holds the information in KeyboardId object as much as possible. At keyboard loading time, the determination deferred will be made depending on the information of KeyboardId. Change-Id: Ice2455d9e5b21671a250c342c06c043e4baa5355
* Refactor to remove KeyboardSwitcher.setVoiceModeTadashi G. Takaoka2010-11-101-31/+27
| | | | | | | This change also renames KeyboardSwitcher.makeKeyboards to refreshKeyboardCache. Change-Id: I76897562d5876a53364dc378e7800ab92fb2a37b
* Refactor calling KeyboardSwitcher.setKeyboardModeTadashi G. Takaoka2010-11-081-2/+2
| | | | | | | This change also eliminates unnecessary recursive call in KeyboardSwitcher.setKeyboardMode. Change-Id: Iff25fe23b34227d526dee0bbe8710842545c2afa
* Make sure there are no modes with settings key on tablet.Ken Wakasa2010-11-021-14/+16
| | | | | | | Follow-up change to I73b8a502 bug: 3095814 Change-Id: I79bb05c61dc73b036331e17d02c791f08a0168fc
* Follow-up change to revise Caps Lock sequence.Ken Wakasa2010-10-261-8/+7
| | | | | bug: 3122877 Change-Id: I44c539d7c041443f3ad027de4b75a67adf6b2c87
* Remove LatinKeyboardBaseView.isShifted() and setShifted() for refactoringKen Wakasa2010-10-251-1/+4
| | | | Change-Id: I9a1106b679a9ffb3ae959d90377eef096e5af842
* Make "show settings key option" dependent to device configurationTadashi G. Takaoka2010-10-221-6/+9
| | | | | Bug: 3095814 Change-Id: I73b8a5023b398621a910c953eade252dc6412923
* Manual merge of the following Gingerbread changes logicallyKen Wakasa2010-10-201-71/+92
| | | | | | | | | | | I8b38e280 Ia3929bb0 If925b546 I1062763d I901e36aa bug: 3100311 Change-Id: Ic7e01277ec816e77d34732599b2b9552668b81c2
* Make sure to set symbol keyboard shiftedTadashi G. Takaoka2010-10-091-6/+13
| | | | | | | | | | | To avoid a corner case of bug#3070963, in toggleShift() method of KeyboardSwitcher, the shifted symbol keyboard will be set if current keyboard is symbol keyboard or is not shifted symbol keyboard. This change also implements mini keyboard cache with WeakHashMap. Bug: 3070963 Change-Id: I868fc072e2f21bddded1622b800a53b9a6a43e91
* Fix issue space key preview remains on screen and would not dismissTadashi G. Takaoka2010-09-221-27/+17
| | | | | | | | | | | | | | The space key preview should be displayed one of the following case. - Popup preview is enabled - Language switcher is in action, whether popup preview is enabled or not. For phone number keyboard, popup preview is never displayed even if popup preview is enabled. Bug: 3006612 Bug: 3021091 Change-Id: I5385c776d0e8e3981fc8d8851db9140d92599ce5
* Add a new preference item to show/hide the settings key.Ken Wakasa2010-09-161-20/+86
| | | | | | bug: 2998722 Change-Id: Iac1641c338388fd8f85e0cf47e31afdaeb34c0c0
* Keep Keyboard in cache through SoftReferenceTadashi G. Takaoka2010-09-091-16/+21
| | | | | | This change also adds final to attributes Change-Id: Ie2b9a1b1f83606b24ad4e35ad72a28d55ed0423e
* Fix ALT key light behaviorTadashi G. Takaoka2010-09-061-11/+14
| | | | | | | This change also cleanups some imports, unnecessary cast and null check. Bug: 2977256 Change-Id: I81b9e539ff8a13ae0cc1eb5c4fb2246732cca3e9
* Support multi-touch only when device has distinct multi-touch panelTadashi G. Takaoka2010-09-061-0/+4
| | | | | Bug: 2973373 Change-Id: I9871c09ec8c1c2aa945d97392e61ee1ec585baef
* Change symbol on space bar when autocompletion is activatedsatok2010-09-031-5/+14
| | | | | | bug: 2959279 Change-Id: Icc70b7cce0c245ae2451d324debd346f226b8769
* Change the preference name for a theme and remove a preference settingssatok2010-09-021-1/+1
| | | | Change-Id: I5ad980559477775eb44df022e54ce5ef32398601
* Add a new theme for Gingerbreadsatok2010-09-011-3/+3
| | | | | | bug: 2959293 Change-Id: I8aef19a7485ffd5639a177aee21103b3a1e04cf2
* Add settings buttonsatok2010-08-311-16/+1
| | | | | | - delete unused keyboard layout Change-Id: Iab39446653460797f1ca876a7d9a23190c3a8df6
* Remove extension keyboardTadashi G. Takaoka2010-08-301-9/+0
| | | | | Bug: 2959287 Change-Id: I344ac58b4119e96daf5928c784275ee0b7095958
* Clean up LatinIME javasatok2010-08-241-1/+0
| | | | | | | | - remove unused code - add @Override - change the inappropriate cast Change-Id: Ib25b4939e5b4273794ab0f6349776b5b62d89894
* Fix an NPE found in KeyboardSwitcher.isAlphabetMode()Ken Wakasa2010-08-201-0/+3
| | | | Change-Id: I03d3d9b25147632d25c1502f796acad4cdaeb239
* DO NOT MERGE. Backport LatinIME from master to Gingerbreadsatok2010-08-201-48/+172
| | | | | | TODO: Cleanup will follow. Change-Id: I4a68ba9f2f55760aa24187f1f13fdfa8a0b70963
* Clarify licensingJean-Baptiste Queru2010-04-051-1/+1
| | | | | | | | -use AOSP copyright instead of Google -add NOTICE and tag file Bug: 2548782 Change-Id: If50b2e9e9cc4b4876b0d047fc9f34e2d537a6da4
* Don't let the native code target be included twice when unbundling.Amith Yamasani2010-03-091-0/+351
Move java code to a different directory so that the unbundled version doesn't try to compile the native code again. Change-Id: I05cf9e643824ddc448821f69805ccb0240c5b986