Skip to content
Snippets Groups Projects
  1. Mar 23, 2015
  2. Nov 21, 2014
  3. Oct 15, 2014
    • Jean Chalard's avatar
      Fix a bug with no suggestions flag · ecea8551
      Jean Chalard authored
      We should reset the composition state when moving the cursor inside
      the word after a gesture when the text field specifies no suggestions.
      
      Bug: 17959921
      Change-Id: I977fea775f7b7e145e343636f0fb94266a40953a
      ecea8551
  4. Oct 14, 2014
  5. 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
  6. Sep 22, 2014
    • Tadashi G. Takaoka's avatar
      Fix when to show important notice · be4e0d0e
      Tadashi G. Takaoka authored
      This CL introduces a timeout duration to show an important notice
      message. When the timeout has passed, the important notice message
      will be suppressed without user intervention.
      
      This CL also adds unit tests and fixes a bug in
      getNextImportantNoticeTitle().
      
      Bug: 17181982
      Change-Id: If321c0060cc2f7ca14ad0631b84f4990f88bd659
      be4e0d0e
  7. Sep 19, 2014
  8. Sep 18, 2014
  9. Sep 16, 2014
  10. Sep 12, 2014
  11. Sep 11, 2014
    • Yohei Yukawa's avatar
      Support CursorAnchorInfo in the full-screen mode · cd119050
      Yohei Yukawa authored
      This CL allows to emulate the behavior of CursorAnchorInfo
      in the full-screen mode to work around the limitation of
      the framework.
      
      Basically this CL copies relevant code from the framework
      to LatinIME. This is actually a code duplicate which isn't
      great, but probably the only way that is available right now.
      
      Change-Id: I30bc8c3387c91c8e47252ba699cbd967d8927dad
      cd119050
  12. Sep 09, 2014
  13. Sep 08, 2014
  14. Sep 05, 2014
  15. Sep 03, 2014
  16. Sep 02, 2014
  17. Aug 29, 2014
  18. Aug 28, 2014
  19. Aug 27, 2014
    • Yohei Yukawa's avatar
      Make sure to obtain the IC before requesting CursorAnchorInfo · acce1aa5
      Yohei Yukawa authored
      RichInputConnection#requestUpdateCursorAnchorInfo must make
      sure to obtain the input connection before calling methods
      of it.
      
      BUG: 17299587
      Change-Id: I8e0cd473a4cc32583cd47634c227d702f7c69c6c
      acce1aa5
    • Tadashi G. Takaoka's avatar
      Simplify onComputeInsets of LatinIME · 37beaf15
      Tadashi G. Takaoka authored
      This CL expands SoftInputWindow to the entire screen. Thus a key
      review backing view is eliminated and onComputeInsets() gets
      simplified too.
      
      Bug: 17212702
      Bug: 10841052
      Bug: 10541453
      Change-Id: I2d859f4e4698c64cabe399000821f13bab729996
      37beaf15
    • Yohei Yukawa's avatar
      Set highlight color along with the commit indicator · 97681ebd
      Yohei Yukawa authored
      With this CL, the text highlight color is applied
      when the commit indicator is displayed.
      
      Note that the underline is not rendered when the
      background color is enabled. This is a known issue.
      
      Change-Id: Ia19355e1303e3a10e8a7d69bc47c779feb70248a
      97681ebd
    • Yohei Yukawa's avatar
      Set the text bgcolor only when CursorAnchorInfo is available · 29200b0a
      Yohei Yukawa authored
      When CursorAnchorInfo is unavailable, we shouldn't try to show
      the commit indicator and set the text highlight color.
      
      With this CL, RichInputConnection can be used to track if the
      application responded that it does support CursorAnchorInfo or
      not.  This result will be taken into consideration when
      InputLogic needs to determine whether the commit indicator
      should be displayed or not.
      
      Change-Id: I945d70eeb02a7a5f3d9b22459b23d7028508910f
      29200b0a
    • Yohei Yukawa's avatar
      Introduce a mechanism to hide the indicator speculatively · a475c854
      Yohei Yukawa authored
      This is an optional optimization to reduce the UI latency.
      
      Imagine that the commit indicator is now displayed and the
      composing text is being updated, it is highly likely that
      the commit indicator will disappear unless the application
      rejects the setComposingText request.
      
      If we assume that the application will accept the new
      composing text without any modifications, we can hide the
      indicator without waiting for the arrival of new
      CursorAnchorInfo event.
      
      This optimization isn't dangerous because we can show the
      indicator again when we receive new CursorAnchorInfo event
      and the assumption is turned out to be invalid.
      
      Change-Id: Id59c6607a1029782410611e768791af9984f14ac
      a475c854
Loading