Skip to content
Snippets Groups Projects
  1. Jan 29, 2015
  2. Dec 12, 2014
  3. Dec 11, 2014
  4. Dec 01, 2014
  5. Nov 21, 2014
  6. Nov 06, 2014
  7. Oct 23, 2014
  8. Oct 21, 2014
    • 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
  9. Oct 16, 2014
    • Jean Chalard's avatar
      [ML25] Add an hasDict method. · f13487df
      Jean Chalard authored
      We used to have separate methods for existence of dicts
      according to whether it's a file or a resource. This unifies both.
      
      Bug: 11230254
      Bug: 17979623
      Change-Id: I728773461f3465f756d06297c3f3bee34390c3e6
      f13487df
  10. Oct 14, 2014
  11. Oct 09, 2014
  12. Aug 25, 2014
    • 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
  13. Aug 22, 2014
  14. Jul 04, 2014
    • Yohei Yukawa's avatar
      Restore additional subtypes when the package is updated · 052ec62a
      Yohei Yukawa authored
      With this CL, Intent#ACTION_MY_PACKAGE_REPLACED will
      not only update the visibility of the setup activity but
      also reconstruct additional subtypes.
      
      This is important because the system always removes all
      the additional subtypes whenever the package is updated.
      
      BUG: 15890448
      Change-Id: Ic36ea68f50b1ac89b4cbd268ee53f9a5e5d60afd
      052ec62a
  15. Jun 13, 2014
  16. May 23, 2014
  17. Apr 30, 2014
    • Yohei Yukawa's avatar
      Check OS codename for shouldOfferSwitchingToNextInputMethod · 1690992d
      Yohei Yukawa authored
      Make sure if Build.VERSION.CODENAME is "REL" or not when
      Build.VERSION.SDK_INT is 19 (KitKat). This is a tentative
      workaround until Build.VERSION.SDK_INT is bumped to 20 or
      greater.
      
      BUG: 12965588
      Change-Id: I0f6a8ef92af221240d247997ce65bd5e351b2d5e
      1690992d
  18. Apr 28, 2014
    • Yohei Yukawa's avatar
      Use shouldOfferSwitchingToNextInputMethod when available · 8ba4f337
      Yohei Yukawa authored
      With this CL, LatinIME starts using
      InputMethodManager#shouldOfferSwitchingToNextInputMethod when
      available and API level is higher than 19 (KitKat).
      
      Note that relevant settings of LatinIME will be ignored if
      InputMethodManager#shouldOfferSwitchingToNextInputMethod is
      considered to be available at the moment. We will revisit
      here to reorganize the user visible settings before the
      new global IME switching mechanism becomes publicly
      available.
      
      BUG: 12965588
      Change-Id: I0188fa56cba8e983c61cef3ae3400a0e3821f718
      8ba4f337
  19. Mar 03, 2014
  20. Jul 24, 2013
  21. Jul 23, 2013
    • Tadashi G. Takaoka's avatar
      Fix NPE in SubtypeLocale.getSubtypeDisplayName · e6c51847
      Tadashi G. Takaoka authored
      This change moves the methods that create the subtype display name for
      spacebar from MainKeyboardView to SubtypeLocale class, and
      consolidates SpacebarTextTests with SubtypeLocaleTests.
      
      Bug: 9962955
      Change-Id: Ifa0a08ff80bc30753a213c2feb471599ca63fa66
      e6c51847
  22. Jul 22, 2013
  23. Jun 24, 2013
  24. Jun 12, 2013
    • Jean Chalard's avatar
      Cache subtype lists reasonably. · ff6445ed
      Jean Chalard authored
      This will spare a lot of IPC for Latin IME at the cost of very little
      retained memory.
      This improves the loading by potentially a lot - between 15 and 30%
      when the layout is cached (which should now be the case almost every
      time), and half that if it's not. More importantly, it makes the
      load time less sensitive to high device load, which is one of the
      sore points.
      
      Bug: 8689779
      Change-Id: I2e07736f1a92c38eed0e203bc690761a181da8b9
      ff6445ed
  25. Jun 07, 2013
    • Tadashi G. Takaoka's avatar
      Don't use RichInputMethodManager in setup wizard · 77f63c8a
      Tadashi G. Takaoka authored
      In setup wizard, InputMethodManager may not be able to be aware that
      this IME is installed, especially just after the IME is installed via
      GooglePlay app and hit the open button on the app to launch the setup
      wizard.
      
      Bug: 9299618
      Change-Id: I00c8544178b41074253d49ae9481996ec56593d2
      77f63c8a
  26. May 21, 2013
  27. May 09, 2013
  28. Apr 22, 2013
  29. Jan 09, 2013
  30. Jan 07, 2013
  31. Nov 28, 2012
  32. Nov 19, 2012
    • Tadashi G. Takaoka's avatar
      Add Spanish United States keyboard · 76d4ffee
      Tadashi G. Takaoka authored
      The subtype locale name on the spacebar will be suppressed when only
      one subtype is enabled and
       - Subtype locale is equal to the system locale.
      or
       - Subtype language is equal to the system language but the subtype is
         implicitly enabled.
      
      Thus the "es_ES" system locale chooses "es" subtype keyboard
      implicitly but the keyboard doesn't have the subtype name on its
      spacebar.
      
      This change also removes Spanish Latin America keyboard.
      
      Bug: 7531804
      Change-Id: Ib929e8235d643c0ba039eb010e18ab721a734e15
      76d4ffee
Loading