PicPicker


Source link: https://github.com/brunodles/PicPicker

PicPicker

A simple library to pick pictures from the gallery and camera. By using a single object to make the requests.

How add it

Add it to your build.gradle with:

repositories {

  maven {
 url "https://jitpack.io" 
}
 
}

and:

dependencies {

  compile 'com.github.brunodles:PicPicker:{
latest version
}
' 
}

Ok, now you have the lib on your project, let's see how to use it.

Seting things up

First make a property on your activity or fragment, like this. private PicPicker picPicker;

Then on the onCreate method you should initialize it.

picPicker = new PicPicker(imageView, this)

That this on the code means the ActivityStarter it's a class that will start the camera or gallery app intent. To make it work like that we need to add implements ActivityStarter on our activity or fragment. Don't even need to change anything. This is needed to let the lib know where the response will be sent.

Now we need to pass the result to the lib and to do that we just need to override onActivityResult and pass it's parameters to the lib, just like that.

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

  picPicker.onActivityResult(requestCode, resultCode, data);

  super.onActivityResult(requestCode, resultCode, data);
 
}

You can even make a validation to check if the lib had used those parameters, it returns true when made something to it.

Using it

Now to use the lib is so simple, to pick a image from the gallery just call.

picPicker.gallery();

If you want to grab a image from the camera call.

picPicker.camera();

Sample

You can see more thing on sample, it have some explanations too. On the sample you will see how to:

  • work with runtime permissions.
  • grab the bitmap.
  • listen for possible errors

You can help this lib to grow

If you fond something wrong or if you want some feature, just create a issue or even better create a pull request with you idea.

Resources

This is a small basic sample for use the basic sentences CRUD with realm library in android.

A library makes your application's auto update more elegant!

Android PopupWindow that can be easily located relative to anchor View.

An Android library that enables snappy smooth scrolling in RecyclerView.

Android and Java library for mocking and testing networking layers with built-in support for Retrofit.

This project contains sample code for Bluetooth communication.

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