Skip to content
Snippets Groups Projects
  1. Apr 21, 2015
    • Yohei Yukaw's avatar
      Always specify non-null Locale object to SuggestionSpan · 490fa47a
      Yohei Yukaw authored
      Confusingly, specifying a null Locale object to the constructor
      of SuggestionSpan does not necessarily mean that
      SuggestionSpan#getLocale() returns null.  The constructor in
      question also receives Context object, and Context's locale can
      be used as a fallback locale to initialize locale of
      SuggestionSpan.
      
      With this CL, LatinIME always specify non-null Locale object
      when instantiating SuggestionSpan object.  It basically
      corresponds to the active main dictionary, but can be
      Locale#ROOT when one locale is not determined for some reasons.
      
      BUG: 20435013
      Change-Id: I2c152466410327300e7dba4d7ed9a22f57c17c4f
      490fa47a
  2. Mar 03, 2015
  3. Feb 11, 2015
    • Dan Zivkovic's avatar
      Fix master build. · 5254c01d
      Dan Zivkovic authored
      For some reason, we can't import android.os package in our Constants.
      
      Change-Id: I357ed72d13c5039a83c6e2489cdf5ef74d0ffea8
      5254c01d
    • Dan Zivkovic's avatar
      Remove shortcut support from LatinIME. · 12d80ebe
      Dan Zivkovic authored
      Note this change does not affect the native decoder interface.
      
      Change-Id: I73b7dc008a5acaf75a31a36a2d332b5afabd82d0
      12d80ebe
  4. Nov 21, 2014
  5. Nov 07, 2014
  6. Nov 06, 2014
  7. Oct 28, 2014
  8. Oct 23, 2014
  9. Oct 21, 2014
    • Yohei Yukawa's avatar
      Remove BuildCompatUtils.VERSION_CODES_LXX · 66d30a4b
      Yohei Yukawa authored
      Finally it is turned out to be a XXL-size Lollipop.
      
      Change-Id: Icbd22506be9de514eba287cdd8d97fbfd070ac09
      66d30a4b
    • Tadashi G. Takaoka's avatar
      Fix some compiler warnings · 5f00fe09
      Tadashi G. Takaoka authored
      This CL fixes the following compiler warnings.
      
      - Indirect access to static member
      - Access to a non-accessible member of an enclosing type
      - Parameter assignment
      - Method can be static
      - Local variable declaration hides another field or variable
      - Value of local variable is not used
      - Unused import
      - Unused private member
      - Unnecessary 'else' statement
      - Unnecessary declaration of throw exception
      - Redundant type arguments
      - Missing '@Override' annotation
      - Unused '@SuppressWarning' annotations
      
      Bug: 18003991
      Change-Id: Icfebe753e53a2cc621848f769d6a3d7ce501ebc7
      5f00fe09
  10. Oct 18, 2014
    • Nick Kralevich's avatar
      fix build · 01acdac1
      Nick Kralevich authored
      Change-Id: Iedbf01e1c6191350aed8d31c2638b2430e67a36f
      01acdac1
  11. Oct 09, 2014
    • Yohei Yukawa's avatar
      Simplify CursorAnchorInfoCompatWrapper · dac49f9f
      Yohei Yukawa authored
      With this CL, we will use CursorAnchorInfoCompatWrapper just to
      avoid unexpected NoClassDefFoundError due to the direct
      dependency CursorAnchorInfo class, which is available only on
      API level 21 and later.
      
      Change-Id: I254ff83f1ca41daa21d0666b5824af22ba529022
      dac49f9f
    • Tadashi G. Takaoka's avatar
      Add keyboard shadow · 15480481
      Tadashi G. Takaoka authored
      This CL sets 8dp elevation ot input view in order to cast a shadow
      onto underlying application.
      
      Bug: 16210054
      Change-Id: I7779c63612fc88e24dde65de3e4e7a45b9d1762f
      15480481
  12. Oct 06, 2014
  13. Sep 29, 2014
    • Yohei Yukawa's avatar
      Fix NPE due to the lack of null-check · de12c1bf
      Yohei Yukawa authored
      The case that was not coverted well is that
      CursorAnchorInfoCompatWrapper could be instantiated
      with null object. In such situations, we should
      do nothing.
      
      BUG: 17682582
      Change-Id: I6625a2f0ed8c5580ed9edfe4728f342da77a8e40
      de12c1bf
  14. Sep 25, 2014
  15. Sep 18, 2014
    • Yohei Yukawa's avatar
      Use Add-To-Dictionary indicator only · 5896153f
      Yohei Yukawa authored
      With this CL, the previously used commit indicator was reverted.
      Instead we use the add-to-dictionary indicator only at the moment.
      
      This CL also fixes the indicator position in bidi context.
      
      BUG: 17335734
      Change-Id: I5f7cf173ddc30876e2b01320acaff8ba4265edf6
      5896153f
  16. Sep 08, 2014
  17. Sep 03, 2014
    • Yohei Yukawa's avatar
      Follow up API signature change · 5d6ac777
      Yohei Yukawa authored
      This is a follow up CL for API signature change in
      I772c48ff18918e48a81e807b48ff907614485c09
      
      BUG: 17320996
      Change-Id: Ic8b6162bda12bf74fae79af212c5d81c400eb9e8
      5d6ac777
  18. Sep 02, 2014
  19. Aug 29, 2014
  20. Aug 28, 2014
  21. Aug 26, 2014
    • Jean Chalard's avatar
      Fix a bug where the top prediction would disappear. · 8380f921
      Jean Chalard authored
      This is because prediction can't be easily distinguished in
      style. This fixes the bug by simulating the right members,
      but some refactoring should be done to remove useless
      booleans.
      
      Bug: 17271923
      Change-Id: Ib88f3fb95678021624e59535492926dd315d26fb
      8380f921
  22. Aug 25, 2014
    • Jean Chalard's avatar
      Fix unit tests · dc110b2a
      Jean Chalard authored
      Change-Id: I48bfa4e4dd80f36d2fe0a1e9d2a2706533cc722e
      dc110b2a
    • Jean Chalard's avatar
      Revert "Revert "[ML1] Introduce RichInputMethodSubtype"" · 85ddfe13
      Jean Chalard authored
      This reverts commit a63d0a8e.
      
      This patch seems to be fine after all, but was submitted without its companion [ML1.1] patch causing a build breakage. Reverting the revert and submitting both at the same time seems like the right thing to do.
      
      Change-Id: Ib8fefa40b74dcee0edb025a52dac9b35c82d49df
      85ddfe13
  23. Aug 22, 2014
  24. Aug 20, 2014
  25. Aug 15, 2014
  26. Aug 13, 2014
  27. Aug 12, 2014
  28. Aug 05, 2014
  29. Aug 04, 2014
  30. Jul 20, 2014
    • Yohei Yukawa's avatar
      Enable InputMethodService#onUpdateCursor behind the flag · 3f513f10
      Yohei Yukawa authored
      With this CL, InputMethodService#onUpdateCursor and
      InputMethodService#onUpdateCursorAnchorInfo can be enabled
      on L when ENABLE_CURSOR_ANCHOR_INFO_CALLBACK and
      ENABLE_CURSOR_RECT_CALLBACK are specified, respectively.
      
      BUG: 16382260
      Change-Id: I29924128f6bd2f08cbd91cc4e82c9c4a6ecce3ff
      3f513f10
  31. Jul 19, 2014
    • Yohei Yukawa's avatar
      Add two convenient utility methods for L new API · 5696ac95
      Yohei Yukawa authored
      This CL adds two convenient utility methods for
      InputConnection#requestCursorAnchorInfo to encapsulate
      a bit complicated parameter construction.
      
      BUG: 16382260
      Change-Id: Ib11e3bd15a4edcb602c08ff830b2fb7b34ec00da
      5696ac95
Loading