Android-FilePicker


Source link: https://github.com/DroidNinja/Android-FilePicker

Android-FilePicker

A filepicker which allows to select images and videos with flexibility. It also supports selection of files by specifying its file type. Check out app module for example.

Installation

  • As of now, It is only available in jCenter(), So just put this in your app dependencies:
 compile 'com.droidninja:filepicker:2.1.0'

Usage

Just include this in your onclick function:

  • For photopicker:
FilePickerBuilder.getInstance().setMaxCount(5)

 .setSelectedFiles(filePaths)

 .setActivityTheme(R.style.AppTheme)

 .pickPhoto(this);
  • For document picker:
 FilePickerBuilder.getInstance().setMaxCount(10)

 .setSelectedFiles(filePaths)

 .setActivityTheme(R.style.AppTheme)

 .pickFile(this);

After this, you will get list of file paths in activity result:

@Override
  public void onActivityResult(int requestCode, int resultCode, Intent data) {

switch (requestCode)

{

 case FilePickerConst.REQUEST_CODE_PHOTO:

  if(resultCode== Activity.RESULT_OK && data!=null)

  {

photoPaths = new ArrayList<>();

photoPaths.addAll(data.getStringArrayListExtra(FilePickerConst.KEY_SELECTED_MEDIA));

  
}

  break;

 case FilePickerConst.REQUEST_CODE_DOC:

  if(resultCode== Activity.RESULT_OK && data!=null)

  {

docPaths = new ArrayList<>();

docPaths.addAll(data.getStringArrayListExtra(FilePickerConst.KEY_SELECTED_DOCS));

  
}

  break;

}

addThemToView(photoPaths,docPaths);

  
}

Builder Methods

Android FilePicker now has more flexibility. Supported builder methods are:

Method Use
setMaxCount(int maxCount) used to specify maximum count of media picks (dont use if you want no limit)
setActivityTheme(int theme) used to set theme for toolbar (must be an actionbar theme)
setSelectedFiles(ArrayList selectedPhotos) to show already selected items
enableVideoPicker(boolean status) added video picker alongside images
enableImagePicker(boolean status) added option to disable image picker
enableSelectAll(boolean status) added option to enable/disable select all feature(it will only work with no limit option)
setCameraPlaceholder(int drawable) set custom camera drawable
withOrientation(Orientation type) In case, if you want to set orientation. ( default=Orientation.UNSPECIFIED)
showGifs(boolean status) to show gifs images in the picker
showFolderView(boolean status) if you want to show folder type pick view, enable this. ( Enabled by default)
enableDocSupport(boolean status) If you want to enable/disable default document picker, use this method. ( Enabled by default)
enableCameraSupport(boolean status) to show camera in the picker ( Enabled by default)
addFileSupport(String title, String[] extensions, @DrawableRes int drawable) If you want to specify custom file type, use this method. ( example below)

If you want to add custom file type picker, use addFileSupport() method like this ( for zip support):

String zipTypes = {
".zip",".rar"
}
;
 addFileSupport("ZIP",zipTypes, R.drawable.ic_zip_icon);

Proguard

# Glide -keep public class * implements com.bumptech.glide.module.GlideModule -keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {

  **[] $VALUES;
  public *; 
}
 # support-v7-appcompat -keep public class android.support.v7.widget.** {
 *; 
}
 -keep public class android.support.v7.internal.widget.** {
 *; 
}
 -keep public class android.support.v7.internal.view.menu.** {
 *; 
}
 -keep public class * extends android.support.v4.view.ActionProvider {

  public <init>(android.content.Context);
 
}
 # support-design -dontwarn android.support.design.** -keep class android.support.design.** {
 *; 
}
 -keep interface android.support.design.** {
 *; 
}
 -keep public class android.support.design.R$* {
 *; 
}
 

Donate

You guys are doing great job by filing bugs and sending pull requests. I am doing everything to maintain this project. If you want to support, your donation is highly appreciated (and I love food, coffee and beer). Thank you!

PayPal

  • Donate $5: Thank's for creating this project, here's a coffee (or some beer) for you!
  • Donate $10: Wow, I am stunned. Let me take you to the movies!
  • Donate $15: I really appreciate your work, let's grab some lunch!
  • Donate $25: That's some awesome stuff you did right there, dinner is on me!
  • Donate $50: I really really want to support this project, great job!
  • Donate $100: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
  • Donate $2799: Go buddy, buy Macbook Pro for yourself! Of course, you can also choose what you want to donate, all donations are awesome!

Credits

Inspired by PhotoPicker

SmoothCheckbox

Youtube Demo

License

Copyright 2016 Arun Sharma  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. 

Resources

This library unifies the user contacts in a compact and user intuitive way allowing the end-user to choose between the contact's available communication options (email/phone number) following Material Design guidelines.

Although there is a standard way to call the contact list in Android, it does not always feel well-integrated in your app Android applications. UnifiedContactPicker is an Android library which allows you to easily integrate contact picking workflow into your application with minimal effort.

This is a powerful little tool that helps converting single or batches of images to Android, iOS, Windows and CSS specific formats and density versions given the source scale factor or target width/height in dp.

It has a graphical and command line interface and supports a wide array of image types for reading and conversion including PNG, JPEG, SVG, PSD and Android 9-patches. Using sophisticated scaling algorithms, it is designed to make conversion of images easy and fast while keeping the image quality high (comparable to PS). To further optimize the output post processors like pngcrush and mozJpeg can be used.

Android Piano Chart View for music theory / music apps.

Android Attitude view for drones, airplanes, rovs and mobile robots.

FireLayout is a CoordinatorLayout linked to its reference on your Firebase Real-Time Database. You can generate your own layout through firebase console.

WaveFileGenerator class let's you generate wave files for specified frequency in android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes