Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.erikagtierrez.multiple_media_picker:multiple-media-picker

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.erikagtierrez.multiple_media_picker:multiple-media-picker

An android library to pick multiple images and/or videos from bulit-in gallery.

  • 1.0.1
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

Multiple Media Picker :boom: :star2:

NOTE: This was created +4 years ago and I am not making any kind of updates since +2 years. If you feel like this library can help you, feel free to fork or contribute creating pull requess (:

Feel free to ask(or request) me anything about it, just create an issue!

Usage

Include easily in your project adding the dependency to your build.gradle file.

dependencies {
  compile 'com.erikagtierrez.multiple_media_picker:multiple-media-picker:1.0.5'
}

Getting started

In the activity from where you want to call the library, declare

    static final int OPEN_MEDIA_PICKER = 1;  // Request code

and request permissions to read external storage

    Manifest.permission.READ_EXTERNAL_STORAGE

Create the intent

    Intent intent= new Intent(this, Gallery.class);
    // Set the title
    intent.putExtra("title","Select media");
    // Mode 1 for both images and videos selection, 2 for images only and 3 for videos!
    intent.putExtra("mode",1); 
    intent.putExtra("maxSelection",3); // Optional
    startActivityForResult(intent,OPEN_MEDIA_PICKER);

and override onActivityResult

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // Check which request we're responding to
        if (requestCode == OPEN_MEDIA_PICKER) {
            // Make sure the request was successful
            if (resultCode == RESULT_OK && data != null) {
                 ArrayList<String> selectionResult=data.getStringArrayListExtra("result");
            }
        }
    }

Custom styles

The primary colors will be inherited from the project it was called. But you can customize a little more by adding to your colors.xml

Title and back button color

 <color name="titleTextColor">#000000</color>  

Unselected image/video tab title

 <color name="titleTabColor">#000000</color>   

Selected image/video tab title!

<color name="titleSelectedTabColor">#E040FB</color>

Make sure to override the titleTextColor inside your theme in styles.xml

<item name="titleTextColor">@color/titleTextColor</item>

License

Copyright 2016 Erika Gutierrez

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

FAQs

Package last updated on 17 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc