{"id":13644100,"url":"https://github.com/vansikrishna/Multimager","last_synced_at":"2025-04-21T06:33:02.449Z","repository":{"id":148895942,"uuid":"81439911","full_name":"vansikrishna/Multimager","owner":"vansikrishna","description":"Multi Image Picker and Multi Image Capture Library","archived":false,"fork":false,"pushed_at":"2017-09-14T22:39:25.000Z","size":15172,"stargazers_count":73,"open_issues_count":22,"forks_count":22,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-09T16:43:48.523Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vansikrishna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-02-09T10:43:14.000Z","updated_at":"2021-02-19T07:49:48.000Z","dependencies_parsed_at":"2023-05-16T19:00:28.444Z","dependency_job_id":null,"html_url":"https://github.com/vansikrishna/Multimager","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vansikrishna%2FMultimager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vansikrishna%2FMultimager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vansikrishna%2FMultimager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vansikrishna%2FMultimager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vansikrishna","download_url":"https://codeload.github.com/vansikrishna/Multimager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250008296,"owners_count":21359962,"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":[],"created_at":"2024-08-02T01:01:57.558Z","updated_at":"2025-04-21T06:32:57.439Z","avatar_url":"https://github.com/vansikrishna.png","language":"Java","readme":"[![](https://jitpack.io/v/vansikrishna/Multimager.svg)](https://jitpack.io/#vansikrishna/Multimager) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Multimager-orange.svg?style=flat-square)](https://android-arsenal.com/details/1/5241)\n\n# Multimager\nMulti Image Picker and Multi Image Capture Demo app\nThis is a sample demonstration for multiple images capture as well as multiple image picker. UX/UI can be styled with any color with relativity to Material Design. The demo shows tinting multiple views based on theme color!!\n\n# Demo App\n\u003ca href='https://play.google.com/store/apps/details?id=com.vlk.multimager.example\u0026pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'\u003e\u003cimg style=\"width:200\" alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png'/\u003e\u003c/a\u003e\n\n# Library\nAdd the jitpack repo to your repositories section in root level build.gradle\n\n    allprojects {\n        repositories {\n            ...\n            maven { url 'https://jitpack.io' }\n        }\n    }\n\nAdd the dependencies to the app level build.gradle\n\n    dependencies {\n        compile 'com.github.vansikrishna:Multimager:1.0.8'\n    }\n\n# Screenshots\n![](https://github.com/vansikrishna/Multimager/blob/master/screenshots/demo.gif)\n![](https://github.com/vansikrishna/Multimager/blob/master/screenshots/3%20-%20small.png)\n![](https://github.com/vansikrishna/Multimager/blob/master/screenshots/9%20-%20small.png)\n![](https://github.com/vansikrishna/Multimager/blob/master/screenshots/11%20-%20small.png)\n\n# Create intent for multi-selection\n\tIntent intent = new Intent(this, GalleryActivity.class);\n\tParams params = new Params();\n\tparams.setCaptureLimit(10);\n\tparams.setPickerLimit(10);\n\tparams.setToolbarColor(selectedColor);\n\tparams.setActionButtonColor(selectedColor);\n\tparams.setButtonTextColor(selectedColor);\n\tintent.putExtra(Constants.KEY_PARAMS, params);\n\tstartActivityForResult(intent, Constants.TYPE_MULTI_PICKER);\n\t\n# Create intent for multi-capture\n\tIntent intent = new Intent(this, MultiCameraActivity.class);\n\tParams params = new Params();\n\tparams.setCaptureLimit(10);\n\tparams.setToolbarColor(selectedColor);\n\tparams.setActionButtonColor(selectedColor);\n\tparams.setButtonTextColor(selectedColor);\n\tintent.putExtra(Constants.KEY_PARAMS, params);\n\tstartActivityForResult(intent, Constants.TYPE_MULTI_CAPTURE);\n\n# Get the result in the `onActivityResult()` callback\n\n    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {\n        super.onActivityResult(requestCode, resultCode, intent);\n        if (resultCode != RESULT_OK) {\n            return;\n        }\n        switch (requestCode) {\n            case Constants.TYPE_MULTI_CAPTURE:\n                ArrayList\u003cImage\u003e imagesList = intent.getParcelableArrayListExtra(Constants.KEY_BUNDLE_LIST);\n                break;\n            case Constants.TYPE_MULTI_PICKER:\n                ArrayList\u003cImage\u003e imagesList = intent.getParcelableArrayListExtra(Constants.KEY_BUNDLE_LIST);\n                break;\n        }\n    }\n\n# Default style\nThe default style is green, but it can be modified with any set colors. One for normal state and another for pressed state.\n```setViewsColorStateList()``` in Utils class will do the job.\n\t\n","funding_links":[],"categories":["图片"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvansikrishna%2FMultimager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvansikrishna%2FMultimager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvansikrishna%2FMultimager/lists"}