aboutsummaryrefslogtreecommitdiffstats
path: root/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove Tutorial class and unused debug featureTadashi G. Takaoka2010-12-1025-762/+358
| | | | | | | This change also cleanups compiler warnings. Bug: 2897373 Change-Id: If972cf45c1eb40436adbddbf71969e5409f4c9c5
* Use setInputMethodAndSubtype and shortcutIME API instead of changing only ↵satok2010-12-102-9/+79
| | | | | | | | view to Voice Input Bug: 3201828 Change-Id: If452f0b2d19eeb1f8f6e7e40539ba4bac6759fcd
* Remove LatinIME prefix from classesTadashi G. Takaoka2010-12-0913-78/+78
| | | | | | This change also cleanups preference key string constants Change-Id: I58510f220a90d00d71a935731abeab87384675bb
* Show auto correction feedbackTadashi G. Takaoka2010-12-092-26/+106
| | | | | Bug: 3230726 Change-Id: Iecf6fc837952c4721f6b726edcf16179254179ca
* Cleanup calling Spannable.setSpan() to set character style spanTadashi G. Takaoka2010-12-091-4/+6
| | | | | | | This change is followup of Iadc11992 Bug: 3230726 Change-Id: I4f6692c3dbfb42986d478f4315105726ff89723a
* Show underline for auto-completion candidate instead of boldingTadashi G. Takaoka2010-12-091-4/+14
| | | | | Bug: 3230726 Change-Id: Iadc11992d45776f7a4002ee9ebf24828646bcc53
* Tweak candidate view height and etc.Tadashi G. Takaoka2010-12-083-16/+18
| | | | Change-Id: I91963d0be122baf2274ea03b5028a66259a2cdb6
* Fix popup mini keyboard for smiley and .com keyTadashi G. Takaoka2010-12-081-7/+9
| | | | Change-Id: Idd156b14a4a259bc7dcaf498fbc8a121a069cbe9
* Support keyboardHeight and maxKeyboardHeight to Keyboard XMLTadashi G. Takaoka2010-12-0854-69/+161
| | | | | | | | | | | | | This change introduces, - new attribute keyboardHeight to specify default keyboard height. - new attribute maxKeyboardHeight to specify maximum keyboard height, usually specified by percentage to the screen height. - keyHeight attribute is obsoleted - new attribute rowHeight to specify a row height, can be specifed as percentage of the keyboard height. And verticalGap is included to the row height (row height = key height + vertical gap). Change-Id: I48a2f2661e8a91a998503a847437c1baf1de9b9c
* Merge "Suggest excessive characters"satok2010-12-071-36/+7
|\
| * Suggest excessive characterssatok2010-12-081-36/+7
| | | | | | | | | | | | bug: 3193883 Change-Id: Iea7a0fce7ce62d8779a7c7e4613d50db30d82b07
* | Implement CandidateView using HorizontalScrollViewTadashi G. Takaoka2010-12-0814-380/+261
|/ | | | | | | | | | | | | | | | | This change re-implements CandidateView using HorizontalScrollView and customized Button, so that the candidate strip can be flingable. This change also introduces the following features. - Highlighting candidate strip and space bar is configurable by @bool/config_candidate_highlight_enabled. - Candidate strip can be centered with left/right padding if @dimen/candidate_strip_padding size is greater than 0. - Candidate text size is configurable by @dimen/candidate_text_size. Bug: 1575885 Bug: 3230726 Change-Id: Iedf78ff31bc9f2f6291a8e8fb7faa0e6b961dd6d
* New gutter for tablet keyboard layoutTadashi G. Takaoka2010-12-071-5/+5
| | | | | Bug: 3253559 Change-Id: I4d5a54ab7664ff090b33aeabe981e0ed24ea21b2
* Merge "Add search mode keyboard layout"Tadashi G. Takaoka2010-12-061-2/+17
|\
| * Add search mode keyboard layoutTadashi G. Takaoka2010-12-071-2/+17
| | | | | | | | | | Bug: 3194695 Change-Id: I602f350882d6e3cb68ae971c1891b887b1f5a510
* | Add some new symbols key to symbols/more keyboardTadashi G. Takaoka2010-12-071-12/+10
|/ | | | | Bug: 3253559 Change-Id: I3c4a546a9c7597d7f85866e7179587132c9eea32
* Merge "Add a mic key to tablet keyboard tentatively for implementation"Tadashi G. Takaoka2010-12-067-1/+27
|\
| * Add a mic key to tablet keyboard tentatively for implementationTadashi G. Takaoka2010-12-077-1/+27
| | | | | | | | | | Bug: 3253559 Change-Id: Iba0b7488e112d5f136f6c1a7bfbeab0dac298d54
* | Merge "Fix a crash when MAX_WORD_LENGTH is too short."satok2010-12-061-8/+8
|\ \ | |/ |/|
| * Fix a crash when MAX_WORD_LENGTH is too short.satok2010-12-061-8/+8
| | | | | | | | Change-Id: Idcb5aa2685321b8d0ac7d846caecbd1c79e4dd77
* | Fix ghost popup mini keyboardTadashi G. Takaoka2010-12-072-11/+20
| | | | | | | | | | Bug: 3257700 Change-Id: I522ceb426b825575c90e8445336191bcf889f05d
* | Prefer United Kingdom to Great Britain as locale stringKen Wakasa2010-12-061-5/+5
| | | | | | | | | | bug: 3256252 Change-Id: I19a0b763e9314a69f054b1b0996317325d6a4661
* | Fix an issue with lingering composing span underline after orientation changesKen Wakasa2010-12-061-7/+10
|/ | | | | | bug: 3246868 Change-Id: Id3887953e195281d677f31fba5feca1e60016bfa
* Fix voice key on phone deviceTadashi G. Takaoka2010-12-067-20/+21
| | | | | | | | | This change, - changes voice key code back to -102 - renames some key code names and method names - adds mic_slash_holo to drawable-hdpi Change-Id: I8be3a20921f472ece4298edad2d275f29a7e4955
* Make Key, Row and Keyboard attributes finalTadashi G. Takaoka2010-12-035-120/+148
| | | | Change-Id: Ie87e9e8936646334646cc93b228e0f6a93a79e5b
* Fix no smiley popup mini keyboardTadashi G. Takaoka2010-12-031-5/+0
| | | | Change-Id: I0e010c6f0c06fd59b7aef75fc142a4ce0089e740
* Remove LatinKey classTadashi G. Takaoka2010-12-034-80/+34
| | | | Change-Id: I56b15980d994eed698566a1d0451e3ec7ab490a0
* Fix NPE at KeyboardTadashi G. Takaoka2010-12-031-3/+3
| | | | | Bug: 3250672 Change-Id: Ieef7ff5e8ba77a2d43f561c2bd2a1921230bd49d
* Merge "Double tap on shift key turns on caps lock"Tadashi G. Takaoka2010-12-023-2/+55
|\
| * Double tap on shift key turns on caps lockTadashi G. Takaoka2010-12-033-2/+55
| | | | | | | | | | Bug: 3238128 Change-Id: Ib641d33da148b72c7c775caa11e0b2ab58a8c081
* | Rename Indonesian and Hebrew translations to match Locale.java conventionsEric Fischer2010-12-024-0/+0
|/ | | | Change-Id: I979b2f70e49e96dfdaf0f1ea2f9e1724bb5b60de
* Refactor LatinKeyboard and LatinKeyTadashi G. Takaoka2010-12-0222-502/+459
| | | | | | | | | This change also moves KeyboardSwitcher and related classes to com.android.inputmethod.keyboard package. Multi project change with Ib23017b2 Change-Id: Id7d54b24615fe22ebb540ca847549909e346ee24
* Move some inner static class to top class in new packageTadashi G. Takaoka2010-12-0249-1448/+1721
| | | | | | | | | This change introduces new package com.android.inputmethod.keyboard which hosts keyboard related classes. Also adds missing @Override and @SuppressWarning("unused") annotation Change-Id: I0317f5cfa317e13f3c77815f48ffc69b5d1ade05
* Merge "Add back-slash key"Tadashi G. Takaoka2010-12-012-8/+10
|\
| * Add back-slash keyTadashi G. Takaoka2010-12-022-8/+10
| | | | | | | | | | | | | | | | | | | | This change also moves some keys, - Infinite is moved to popup char of plus-minus. - not-equal and nearly-equal are moved to popup chars of equal. Bug: 3224679 Change-Id: I7c95ab5a7cd78e4dae13fb511edad607dcaed8da
* | Add [CHAR LIMIT] comment to stringsTadashi G. Takaoka2010-12-021-2/+2
|/ | | | | Bug: 3245533 Change-Id: If4dc017f302b6a0e960818d4db6d616988bf802f
* Merge "Fix parameters of native functions and refactor Dictionary"satok2010-12-011-13/+14
|\
| * Fix parameters of native functions and refactor Dictionarysatok2010-12-021-13/+14
| | | | | | | | | | | | - created bigram/unigram dictionary classes Change-Id: I233a28ed8d611870db3f4cf8f25fc45b5d41529b
* | Import revised translations.Eric Fischer2010-12-0141-606/+385
| | | | | | | | Change-Id: Ib71ada990e23e1c48a2f52f893e294bc27560329
* | Merge "Update string for Ic0d5f862"Ken Wakasa2010-12-011-1/+1
|\ \
| * | Update string for Ic0d5f862Ken Wakasa2010-12-011-1/+1
| | | | | | | | | | | | | | | bug: 3232408 Change-Id: I642e736190e63bdf1591d5d7f29ef05b7e82fe03
* | | Merge "Add ru and sr keyboard layout for tablet"Tadashi G. Takaoka2010-12-013-1/+324
|\ \ \
| * | | Add ru and sr keyboard layout for tabletTadashi G. Takaoka2010-12-013-1/+324
| | | | | | | | | | | | | | | | | | | | Bug: 3210174 Change-Id: Iea515345093027099689642946da505ddc6e53c6
* | | | Load keyboard only when subtype is keyboard modeTadashi G. Takaoka2010-12-013-21/+28
|/ / / | | | | | | | | | | | | Bug: 3224990 Change-Id: I1ae1d86dce923464d4474fc7ce02f2ff22067603
* | | Merge "Add Scandinavia keyboard layout for tablet"Tadashi G. Takaoka2010-12-014-0/+241
|\ \ \ | |/ / |/| |
| * | Add Scandinavia keyboard layout for tabletTadashi G. Takaoka2010-12-014-0/+241
| | | | | | | | | | | | | | | Bug: 3243405 Change-Id: I84ee566a14fcb802d38ed37223f303d80c8de3f2
* | | Merge "Add fr_CH keyboard subtype"Tadashi G. Takaoka2010-12-014-1/+7
|\ \ \
| * | | Add fr_CH keyboard subtypeTadashi G. Takaoka2010-12-014-1/+7
| |/ / | | | | | | | | | Change-Id: I3977f9e201e77a682c1c8bed221cca32204dafbe
* / / Disable "touch to correct words" when suggestion strip is offKen Wakasa2010-12-011-2/+2
|/ / | | | | | | | | bug: 3232408 Change-Id: Ic0d5f86288befcd5cf93cd86aaf8936929dbcdcc
* | Merge "Key release event should be sent when finger sliding"Tadashi G. Takaoka2010-12-011-6/+10
|\ \ | |/ |/|