1. 20 9月, 2019 2 次提交
  2. 12 9月, 2019 1 次提交
    • P
      Fixed issue #474 (#490) · 1e147f56
      Paul 提交于
      * Fixed issue 474, canScrollHorizontally() throws NPE if the RecyclerView is not attached to the Window
      1e147f56
  3. 31 3月, 2019 1 次提交
  4. 11 1月, 2019 1 次提交
  5. 16 11月, 2018 1 次提交
    • T
      Fixes the wrong positioning (#470) · 27bacef7
      Takeshi Hagikura 提交于
      Fixes the wrong positioning
      
      On the condition flexWrap = No wrap and justifyContent = center.
      This happened because when flexWrap = no wrap, the anchor position
      retrieved from the existing view was wrong. Because the OrientationHelper
      is changed to perpendicularly when flexWrap is nowrap.
      27bacef7
  6. 02 11月, 2018 1 次提交
  7. 21 10月, 2018 1 次提交
  8. 17 10月, 2018 2 次提交
  9. 25 9月, 2018 7 次提交
    • T
      Merge pull request #461 from google/update_build_gradle_version_3.2 · 9db6bb19
      Takeshi Hagikura 提交于
      Merge the androidx to master
      9db6bb19
    • T
      Merge the androidx into master. · c3a569f5
      Takeshi Hagikura 提交于
      Now Android Studio 3.2 and the androidx 1.0.0 versions are stable.
      Merging the androidx features to the master is ready.
      c3a569f5
    • G
      Update to AndroidX stable (#460) · 771df9f4
      Gaëtan Muller 提交于
      771df9f4
    • T
      Bump versions for the 1.1.0-beta1 release (#447) · fee22cbe
      Takeshi Hagikura 提交于
      fee22cbe
    • T
      Update the library versions · 59d86c04
      Takeshi Hagikura 提交于
      59d86c04
    • T
    • T
      Convert the project to androidx. (#436) · be9bdcbb
      Takeshi Hagikura 提交于
      * Convert the project to androidx.
      
      Here are the steps I did for the conversion.
      
      Used Android Studio 3.2 canary 17
      
      Auto conversion to androdx
      1. Changed the targetSdkVersion and compileSdkVersion to 28
      2. From Android Studio, navigated to "Refactor -> Refactor to AndroidX"
      
      Manual changes
      1. Trimmed the leading package name (e.g. androidx.recyclerview.widget.RecyclerView -> RecyclerView in files where it's already imported)
      2. Added "androidx.test:rules:1.1.0-alpha3" for a dependency
         (com.android.support.test:runner was there before the conversion, but some classes are now provided by a different dependency like "ActivityTestRule")
      3. In build.gradle files, defined duplicate versions through variables.
         (e.g. 1.0.0-alpha3 for the androidxCoreVersion)
      4. Handled API changes
        - LayoutManager.getChildAt is now nullable
      5. Optimized import order
      
      These issues need be addressed by the conversion tool. I'll file these
      as issues.
      1. double quotations were replaced by single quotations in the dependencies in build.gradle. It's going to be an issue if the versions are defined through variables.
      2. Unneeded leading package names.
          e.g.
      val navigationView: com.google.android.material.navigation.NavigationView = findViewById(R.id.nav_view)
        Should be
      val navigationView: NavigationView = findViewById(R.id.nav_view)
      3. Add a missing dependency automatically? Like androidx.test.rules.
      
      be9bdcbb
  10. 06 9月, 2018 1 次提交
  11. 19 7月, 2018 2 次提交
    • T
      Fix the onItemsMoved animation. (#448) · feea71a5
      Takeshi Hagikura 提交于
      Remove the unneeded guard condition in the updateDirtyPosition.
      The mPendingScrollPosition (the position that is considered as the
      starting point when the next layout starts) needed to be updated
      regardless of the if statement of comparing
      firstVisiblePosition and the positionStart
      
      Fixes #439
      feea71a5
    • T
      Move the code style settings file. (#438) · 357dc515
      Takeshi Hagikura 提交于
      To make it easier to import the scheme.
      Also modify the instructions to apply the scheme.
      357dc515
  12. 17 5月, 2018 2 次提交
  13. 16 5月, 2018 2 次提交
  14. 14 5月, 2018 1 次提交
  15. 19 3月, 2018 1 次提交
  16. 15 3月, 2018 1 次提交
  17. 08 3月, 2018 1 次提交
  18. 14 2月, 2018 1 次提交
  19. 01 2月, 2018 1 次提交
  20. 05 1月, 2018 3 次提交
  21. 18 12月, 2017 3 次提交
  22. 15 12月, 2017 1 次提交
  23. 30 11月, 2017 2 次提交
  24. 27 9月, 2017 1 次提交