{"id":21174869,"url":"https://github.com/mindinventory/overlap-image-gallery-view","last_synced_at":"2025-09-08T06:34:44.210Z","repository":{"id":59876874,"uuid":"152706142","full_name":"Mindinventory/overlap-image-gallery-view","owner":"Mindinventory","description":"OverlapImageGalleryView with different animations. Sample for android mobile application.","archived":false,"fork":false,"pushed_at":"2022-09-28T06:12:28.000Z","size":279820,"stargazers_count":211,"open_issues_count":1,"forks_count":35,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-05-10T16:15:18.015Z","etag":null,"topics":["android","android-library","animation","easy-to-use","gallery","overlapgallery","overlapitemrecyclerview","overlapping-images-gallery","recyclerview"],"latest_commit_sha":null,"homepage":"https://www.mindinventory.com/android-application-development.php","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mindinventory.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-12T06:46:38.000Z","updated_at":"2025-03-06T09:02:27.000Z","dependencies_parsed_at":"2023-01-19T00:15:48.358Z","dependency_job_id":null,"html_url":"https://github.com/Mindinventory/overlap-image-gallery-view","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Foverlap-image-gallery-view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Foverlap-image-gallery-view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Foverlap-image-gallery-view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Foverlap-image-gallery-view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mindinventory","download_url":"https://codeload.github.com/Mindinventory/overlap-image-gallery-view/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253442152,"owners_count":21909199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-library","animation","easy-to-use","gallery","overlapgallery","overlapitemrecyclerview","overlapping-images-gallery","recyclerview"],"created_at":"2024-11-20T16:56:28.868Z","updated_at":"2025-05-10T16:15:25.556Z","avatar_url":"https://github.com/Mindinventory.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://www.mindinventory.com/?utm_source=gthb\u0026utm_medium=repo\u0026utm_campaign=overlapImageGalleryView\"\u003e\u003cimg src=\"https://github.com/Sammindinventory/MindInventory/blob/main/Banner.png\"\u003e\u003c/a\u003e\n# OverlapImageGalleryView [![](https://jitpack.io/v/Mindinventory/OverlapImageGalleryView.svg)](https://jitpack.io/#Mindinventory/OverlapImageGalleryView) ![](https://img.shields.io/github/languages/top/Mindinventory/OverlapImageGalleryView) ![](https://img.shields.io/github/license/mindinventory/OverlapImageGalleryView)\n\n--\nOverlapImageGalleryView is an android library which provides circular image horizontal list with multiple animations and customization.\n\n### Preview\n![image](/media/OverlapImageView.gif)\n\n### Key features\n\n* Easy way to integrate it with your recyclerview adapter.\n* Overlapping space as you want.\n* Number of items to show in gallery as overlapped.\n* Different scroll animations.\n* Orientation.\n* Supported androidx\n\n## Usage\n### Dependencies\n- **Step 1: Add the JitPack repository in your project build.gradle file**\n```bash\nallprojects {\n\t    repositories {\n\t\t    ...\n\t\t    maven { url 'https://jitpack.io' }\n\t    }\n    }\n```\n**or**\n\n**If Android studio version is Arctic Fox or higher then add it in your settings.gradle**\n\n```bash\ndependencyResolutionManagement {\n  \t\trepositories {\n       \t\t...\n       \t\tmaven { url 'https://jitpack.io' }\n   \t\t}\n   }\n``` \n- **Step 2: Add the dependency in your app module build.gradle file**\n```bash\ndependencies {\n\t\t    ...\n\t        implementation 'com.github.Mindinventory:OverlapImageGalleryView:x.x.x'\n\t}\n```\n### Implementation\n```Fragment/Activity\n    //------limit number of items to be overlapped     \n    private val overlapLimit = 5     \n  \n    //------set value of item overlapping in percentage between 0 to 100\n    private val overlapWidthInPercentage = -50\n  \n    //------set item decoration for item overlapping\n    recyclerView.addItemDecoration(OverlapRecyclerViewDecoration(overlapLimit, overlapWidth))\n    recyclerView.adapter = mAdapter         \n    mAdapter.setImageList(setDummyArrayList())\n    \n    \n    //------ Implement OverlapRecyclerViewClickListener interface to get callback of items click.\n    override fun onNormalItemClicked(adapterPosition: Int) {\n        toast(this,\"Normal item clicked \u003e\u003e $adapterPosition\")\n    }\n\n    override fun onNumberedItemClick(adapterPosition: Int) {\n        toast(this,\"Numbered item clicked \u003e\u003e $adapterPosition\")\n        // Here you can add remaining items in list or open seperate screen.\n    }\n```\n\n### Library used\n* Glide -\u003e implementation 'com.github.bumptech.glide:glide:4.8.0'\n\n### Dribble\nhttps://dribbble.com/shots/5790365-Magnetic-Swipe-Animation-code\n\n## LICENSE!\n\nOverlapImageGalleryView is [MIT-licensed](/LICENSE).\n\n## Let us know!\nIf you use our open-source libraries in your project, please make sure to credit us and Give a star to www.mindinventorycom\n\n\u003cp\u003e\u003ch4\u003ePlease feel free to use this component and Let us know if you are interested to building Apps or Designing Products.\u003c/h4\u003e\n\u003ca href=\"https://www.mindinventory.com/contact-us.php?utm_source=gthb\u0026utm_medium=repo\u0026utm_campaign=overlapImageGalleryView\"\u003e\n\u003cimg src=\"https://github.com/Sammindinventory/MindInventory/blob/main/hirebutton.png\" width=\"203\" height=\"43\"  alt=\"app development\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Foverlap-image-gallery-view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindinventory%2Foverlap-image-gallery-view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Foverlap-image-gallery-view/lists"}