Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: martipello/MultiImageView
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.3
Choose a base ref
...
head repository: martipello/MultiImageView
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 18 commits
  • 48 files changed
  • 2 contributors

Commits on Dec 22, 2019

  1. changed order of bitmaps to a more predictable order, 1 = center, 2 =…

    … left then right, 3 = left then top right then bottom right, 4 = top left then top right then bottom left then bottom right
    martinseal committed Dec 22, 2019
    Copy the full SHA
    9ccc268 View commit details

Commits on Feb 20, 2020

  1. added a new example to showcase some of the shortcomings of the multi…

    …imageview added 2 new methods one for add all which isnt tested and one for getting the bitmap count for better debugging
    martinseal committed Feb 20, 2020
    Copy the full SHA
    50afabd View commit details
  2. Copy the full SHA
    9758f01 View commit details

Commits on Feb 22, 2020

  1. Copy the full SHA
    b93323b View commit details
  2. updated read me

    martipello authored Feb 22, 2020
    Copy the full SHA
    f459286 View commit details
  3. adding screenshots

    martinseal committed Feb 22, 2020
    Copy the full SHA
    eda4379 View commit details
  4. Copy the full SHA
    7b42f9f View commit details
  5. updated read me

    martipello authored Feb 22, 2020
    Copy the full SHA
    498e2cd View commit details
  6. updated read me

    martipello authored Feb 22, 2020
    Copy the full SHA
    3c97793 View commit details
  7. renamed screenshots

    martinseal committed Feb 22, 2020
    Copy the full SHA
    e52562f View commit details
  8. Copy the full SHA
    a3ce234 View commit details
  9. update readme

    file names changed updated read me
    martipello authored Feb 22, 2020
    Copy the full SHA
    5da8fd8 View commit details

Commits on Feb 23, 2020

  1. may have fixed the recycler view problem where the view would sometim…

    …es duplicate the images
    martinseal committed Feb 23, 2020
    Copy the full SHA
    91e4241 View commit details
  2. Copy the full SHA
    7f720c3 View commit details

Commits on Sep 24, 2020

  1. Copy the full SHA
    4c21f67 View commit details
  2. changed build files

    martinseal committed Sep 24, 2020
    Copy the full SHA
    33762d1 View commit details
  3. Copy the full SHA
    1f10dfa View commit details
  4. Copy the full SHA
    b797793 View commit details
Showing with 1,169 additions and 144 deletions.
  1. +3 −0 .idea/.gitignore
  2. BIN .idea/caches/build_file_checksums.ser
  3. +116 −0 .idea/codeStyles/Project.xml
  4. +6 −0 .idea/compiler.xml
  5. +24 −0 .idea/gradle.xml
  6. +40 −0 .idea/jarRepositories.xml
  7. +4 −0 .idea/misc.xml
  8. +10 −0 .idea/modules.xml
  9. +73 −0 .idea/navEditor.xml
  10. +12 −0 .idea/runConfigurations.xml
  11. +6 −0 .idea/vcs.xml
  12. +19 −70 README.md
  13. +5 −3 build.gradle
  14. +2 −2 gradle/wrapper/gradle-wrapper.properties
  15. +3 −15 multiimageview/build.gradle
  16. +1 −1 ...iew/src/androidTest/java/com/{stfalcon → sealstudios}/multiimageview/ExampleInstrumentedTest.java
  17. +1 −1 multiimageview/src/main/AndroidManifest.xml
  18. +77 −13 multiimageview/src/main/java/com/{stfalcon → sealstudios}/multiimageview/MultiImageView.kt
  19. +23 −0 multiimageview/src/main/res/values/attrs.xml
  20. +1 −1 multiimageview/src/test/java/com/{stfalcon → sealstudios}/multiimageview/ExampleUnitTest.java
  21. +23 −2 sample/build.gradle
  22. +1 −1 .../androidTest/java/com/{stfalcon → sealstudios}/multiimageview/sample/ExampleInstrumentedTest.java
  23. +2 −2 sample/src/main/AndroidManifest.xml
  24. +28 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/MainActivity.java
  25. +39 −8 ...on/multiimageview/sample/MainActivity.java → sealstudios/multiimageview/sample/MainFragment.java}
  26. +87 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/PreviewFragment.java
  27. +144 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/RecyclerViewExample.java
  28. +120 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/adapters/MultiImageViewAdapter.java
  29. +33 −0 ...main/java/com/sealstudios/multiimageview/sample/adapters/view_holders/MyMultiImageViewHolder.java
  30. +31 −0 ...le/src/main/java/com/sealstudios/multiimageview/sample/decorator/MultiImageViewItemDecorator.java
  31. +10 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/glide/MyGlideApp.java
  32. +7 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/helpers/ClickHelper.java
  33. +62 −0 sample/src/main/java/com/sealstudios/multiimageview/sample/models/MultiImageViewModel.java
  34. BIN sample/src/main/res/drawable/screenshot_1582383274.png
  35. BIN sample/src/main/res/drawable/screenshot_1582383276.png
  36. BIN sample/src/main/res/drawable/screenshot_1582383280.png
  37. BIN sample/src/main/res/drawable/screenshot_1582383283.png
  38. BIN sample/src/main/res/drawable/screenshot_1582383286.png
  39. BIN sample/src/main/res/drawable/screenshot_1582383289.png
  40. +9 −24 sample/src/main/res/layout/activity_main.xml
  41. +55 −0 sample/src/main/res/layout/fragment_main.xml
  42. +22 −0 sample/src/main/res/layout/preview_layout.xml
  43. +14 −0 sample/src/main/res/layout/recycler_view_layout.xml
  44. +15 −0 sample/src/main/res/layout/view_holder.xml
  45. +38 −0 sample/src/main/res/navigation/main_navigation.xml
  46. +1 −0 sample/src/main/res/values/dimens.xml
  47. +1 −0 sample/src/main/res/values/strings.xml
  48. +1 −1 sample/src/test/java/com/{stfalcon → sealstudios}/multiimageview/sample/ExampleUnitTest.java
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added .idea/caches/build_file_checksums.ser
Binary file not shown.
116 changes: 116 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 73 additions & 0 deletions .idea/navEditor.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading