aboutsummaryrefslogtreecommitdiffstats
path: root/java/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Enable re-edit featuresatok2010-07-201-2/+0
| | | | Change-Id: I4c6a9ddf3f3c4eb35076f4ed27e009462cfc2e9e
* Merge "Change the default vaule of Log to be false"Ken Wakasa2010-07-201-1/+1
|\
| * Change the default vaule of Log to be falsesatok2010-07-201-1/+1
| | | | | | | | Change-Id: I8a3c0ce81b67e27b7559b534b4ccde2ad0783dbc
* | Prepare for master mergeKen Wakasa2010-07-201-2/+2
|/ | | | | | | | | - Rename the jni library name - Revert the local cert - LatinIme2Google -> LatinIME Please note that we'll use the new package name: com.google.android.inputmethod.latin Change-Id: Ibbab07e8102ade5a93660c0723cd86f600c14a7d
* Merge remote branch 'goog/master'satok2010-07-172-9/+39
|\ | | | | | | | | Conflicts: java/src/com/android/inputmethod/latin/LatinIME.java
| * Merge "Slightly reluctant to scroll candidate strip to be able to easily ↵Tadashi G. Takaoka2010-07-161-1/+12
| |\ | | | | | | | | | choose the suggestion"
| | * Slightly reluctant to scroll candidate strip to be able to easily choose the ↵Tadashi G. Takaoka2010-07-161-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | suggestion Also fixed the comment of mMinTouchableWidth Bug: 2581826 Change-Id: Idc79186b0647b0e7e7ec889488b019b7db5241ad
| * | Underlining for correction is causing problems with styled text. Disable for ↵Amith Yamasani2010-07-161-8/+27
| |/ | | | | | | | | | | | | | | | | now. Disable until we find a cleaner solution to highlighting for correction (may need a framework change). Removed a check for VoiceInput.DELETE_SYMBOL, which is not in use any more.
* | Comment out re-editing featuresatok2010-07-161-2/+4
| | | | | | | | Change-Id: Ib4ffee3a00b8dae75e3472ccdfcb3765625ed4ed
* | Fix build failure by adding an inputsatok2010-07-161-3/+5
| | | | | | | | Change-Id: I0f8f7549423deb6d18df4cca949b210c9ec494a5
* | Merge remote branch 'goog/master'satok2010-07-167-61/+249
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: java/res/xml/prefs.xml java/src/com/android/inputmethod/latin/BinaryDictionary.java java/src/com/android/inputmethod/latin/Dictionary.java java/src/com/android/inputmethod/latin/ExpandableDictionary.java java/src/com/android/inputmethod/latin/LatinIME.java java/src/com/android/inputmethod/latin/Suggest.java tests/src/com/android/inputmethod/latin/tests/SuggestTests.java
| * added bigram predictionJae Yong Sung2010-07-136-41/+226
| | | | | | | | | | | | | | | | | | - after first character, only suggests bigram data (but doesn't autocomplete) - after second character, words from dictionary gets rearranged by using bigram - compatible with old dictionary - added preference option to disable bigram Change-Id: Ia8f4e8fa55e797e86d858fd499887cd396388411
| * Fix some bugs in editing featureAmith Yamasani2010-07-092-18/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | - Fixed caching of words - some StringBuilders were being recycled while also being cached. Making copies now. - Fixed regression in revert - don't reset the word composer after saving the accepted word. - Removed flicker when cursoring through a word - delay the abortCorrection() until we need to and do the correction as an atomic operation. - Fixed replacing of "selected" words (double-tap to select a word) Still to do: - Remove flicker on highlighting a word - may need a framework change - Don't remove spans on text that's already in the text field - may require a framework change. - Figure out what to do about the punctuations that share the suggestion strip when in correction mode.
* | Disable re-editting feature.satok2010-07-021-2/+3
| | | | | | | | Change-Id: I1fd8d7b3037ec8ee2eb468ed7770b10c09c5e73c
* | Show preview of F1 keys properlysatok2010-07-021-6/+1
| | | | | | | | Change-Id: Ie1c6a13efcada09d29c1006224dcf54000c14283
* | Merge "Null check at BackToAcceptedDefault"satok2010-07-012-2/+3
|\ \
| * | Null check at BackToAcceptedDefaultsatok2010-07-022-2/+3
| | | | | | | | | | | | Change-Id: Ib232475520f822bf8613258afb9638e1be50d7f7
* | | Fix the mic icon key is not black in the black scheme.satok2010-07-021-6/+6
|/ / | | | | | | Change-Id: I2be3507019601bc93a3e49cc60777e1515f53dc4
* | Merge "Add key debounce. bug: 2517112"Ken Wakasa2010-06-301-1/+14
|\ \
| * | Add key debounce. bug: 2517112Ken Wakasa2010-07-011-1/+14
| | | | | | | | | | | | Change-Id: I461e481226395ce8964003c2ad1f4af888c6f7f9
* | | Fix NPE on logging wordssatok2010-07-011-1/+2
|/ / | | | | | | Change-Id: Idb01cc3226a979de656b30e57422bb35b25d13fa
* | Merge commit 'goog/master'satok2010-07-015-59/+332
|\| | | | | | | | | Conflicts: java/src/com/android/inputmethod/latin/LatinIME.java
| * Show word alternatives for spoken inputMaryam Garrett2010-06-292-30/+57
| | | | | | | | | | | | | | | | | | | | With this change, we show alternatives for a word that has been spoken.The user triggers the display of alternatives by tapping on the word. The alternatives are currently generated by a client-side algorithm, but will be improved when we move to a server-side generation of the alternatives Change-Id: I454ee28fef9bf97a1b026ce8c605ca4badb39e79
| * Remember typed words for auto-correctionsAmith Yamasani2010-06-244-34/+279
| | | | | | | | Change-Id: I475c2fa7604f91659100510079fa13c7615177e9
* | Fix "pi" input issues. Added a popup for greek capital pi. Bug: 2220892Ken Wakasa2010-06-301-1/+3
| | | | | | | | Change-Id: Ie465e2ed93c79b0efe9d518cc44df1028f1bb392
* | No capitalization for inputs from the symbols keyboard. bug: 2220892Ken Wakasa2010-06-304-2/+22
| | | | | | | | Change-Id: I832e855e8882c0ccbc48505acce5b605761cd93a
* | Change color of a shodow behind the current language in Black symbols schemesatok2010-06-301-7/+9
| | | | | | | | Change-Id: I8ce049e1d77753a481cd45b53254ba248dca9f15
* | Add a typeFace element and a symbol's color elementsatok2010-06-293-7/+36
| | | | | | | | | | | | | | - add default bold theme - add Change-Id: Ie3f31a6973c12e7f8b885d0036f50e8647c9fe82
* | Remove additional layoutssatok2010-06-262-4/+6
| | | | | | | | Change-Id: I65dbf3a4484b02ff1d854f704088ca527e273b85
* | Move KeyboardView in the framework to LatinKeyboardViewBasesatok2010-06-263-4/+1476
| | | | | | | | Change-Id: I99e3ea5eb1f1f5e5f9b36306930cdf0f50acfb01
* | Make DropBox.addText AsyncTask in IMELoggersatok2010-06-173-17/+66
| | | | | | | | Change-Id: I84d5915a3197a67cda6bec8b0ef3343df2e510be
* | Log the current launguage and enabled languagessatok2010-06-161-0/+24
| | | | | | | | Change-Id: Ie504961be7c90bdcabe73ca3bddf98cac61f3d3b
* | Catch inflate exceptionsatok2010-06-092-5/+9
| | | | | | | | Change-Id: Ia5a384f5cbd2d0063904c2959ccbeb987198616b
* | Try GC at OutOfMemoryErrorsatok2010-06-095-14/+96
| | | | | | | | Change-Id: Icfaecc6a0e8858622649ce9115ab94b00e240cc2
* | Merge "Fix logging issues"satok2010-06-071-33/+46
|\ \
| * | Fix logging issuessatok2010-06-081-33/+46
| | | | | | | | | | | | | | | | | | | | | - send non-main dic words after filling blank - send cancellation counts per dic Change-Id: I010794cc810339d7b04d64f7b0a6fa5d5cbf8826
* | | Show a current locale in the space barsatok2010-06-041-9/+8
|/ / | | | | | | Change-Id: I317a0b0b20c3065f2e7454f7b44654a34b97500d
* | Fix NPE onDestroysatok2010-06-041-3/+7
| | | | | | | | Change-Id: I6aa1951fd3d69e07d1fbc7712fe2526dd9a5ef57
* | Change RuntimeErrot to OutOfMemoryErrorsatok2010-06-044-5/+13
| | | | | | | | Change-Id: Ic237bc7f0631dcb192be7203379bdf4c5d832b28
* | Show encoded logsatok2010-06-031-4/+4
| | | | | | | | Change-Id: I59a8c1506409097a1e8864b51051d969edaf2680
* | Delete extra inflating viewsatok2010-06-031-1/+0
| | | | | | | | | | | | - this is not called in froyo-LatinIME, so it can be removed Change-Id: I3a761145dd30a93ba71d39df9fa504383c5425a5
* | URL encode a log of exceptionsatok2010-06-031-1/+2
| | | | | | | | Change-Id: I50c08d58b4ce8555d88c68cae44c12600ae93221
* | Fix NPE and addded logOnWarningsatok2010-06-033-2/+15
| | | | | | | | Change-Id: I4cca905ce044c014490ada6d00a76d79a20ed885
* | Hide debug modesatok2010-06-033-23/+67
| | | | | | | | | | | | | | | | - Tap feedback option 10 times, then debug mode will be enabled. - Change default value of KeyboardMode to avoid NPE - Update version code Change-Id: I3a4e64db0d3aa9a08f0e3b3ad1669e728e32cddf
* | Remove non-main dictionary candidatessatok2010-06-031-22/+27
| | | | | | | | Change-Id: I9f33da674c2c2a0101671ba24424640ba3e695e5
* | Fix a bug that force closing happens even when SUPPRESS_EXCEPTION flag is on.satok2010-06-033-12/+21
| | | | | | | | Change-Id: I927b11da1e62b147813fbbf01e2afce5915aed73
* | Flush before re-throwing exception in logOnExceptionsatok2010-06-031-0/+2
| | | | | | | | Change-Id: I061738c5b1a1509015344c2c27848bac1e29d833
* | Add candidates of manually picked suggestionssatok2010-06-023-20/+64
| | | | | | | | Change-Id: Ieed585be5f4e88509cdcc31f5d82474cb06add6a
* | Add additional punctuations to suggestion strip. Bug: 2729632Ken Wakasa2010-06-021-7/+13
| | | | | | | | Change-Id: I5a3d47fee2a09da06b395529c4eccce6d14ecb9d
* | Check suggested words whether they are from mainDic or notsatok2010-06-0210-30/+98
| | | | | | | | | | | | | | - Added counters for suggestions by dictionarys - Added a counter for cancelled suggestions Change-Id: Ia7d3a73855b1e82b60a010f18dba4e1c0fe1c2bb