RxImagePicker


Source link: https://github.com/MLSDev/RxImagePicker

RxImagePicker

An easy way to get image from Gallery or Camera with request runtime permission on Android M using RxJava2

Setup

To use this library your minSdkVersion must be >= 16.

In your build.gradle :

dependencies {

  compile 'com.mlsdev.rximagepicker:library:2.0.2'
  
}

Example

RxImagePicker.with(context).requestImage(Sources.CAMERA).subscribe(new Consumer<Uri>() {

@Override

public void accept(@NonNull Uri uri) throws Exception {

 //Get image by uri using one of image loading libraries. I use Glide in sample app.

}

  
}
);

Request multiple images on Android Api level 18+ :

RxImagePicker.with(getContext()).requestMultipleImages().subscribe(new Consumer<List<Uri>>() {

@Override

public void accept(@NonNull List<Uri> uris) throws Exception {

 //Get images by uris.

}

  
}
);

Using converters

RxImagePicker.with(context).requestImage(Sources.GALLERY)
  .flatMap(new Function<Uri, ObservableSource<Bitmap>>() {

@Override

public ObservableSource<Bitmap> apply(@NonNull Uri uri) throws Exception {

 return RxImageConverters.uriToBitmap(getContext(), uri);

}

  
}
).subscribe(new Consumer<Bitmap>() {

@Override

public void accept(@NonNull Bitmap bitmap) throws Exception {

 // Do something with Bitmap

}

  
}
);
RxImagePicker.with(context).requestImage(Sources.GALLERY)
  .flatMap(new Function<Uri, ObservableSource<File>>() {

@Override

public ObservableSource<File> apply(@NonNull Uri uri) throws Exception {

 return RxImageConverters.uriToFile(getContext(), uri, new File("YOUR FILE"));

}

  
}
).subscribe(new Consumer<File>() {

@Override

public void accept(@NonNull File file) throws Exception {

 // Do something with your file copy

}

  
}
);

Sample App

Authors

License

RxImagePicker is released under the MIT license. See LICENSE for details.

About MLSDev

RxImagePicker is maintained by MLSDev, Inc. We specialize in providing all-in-one solution in mobile and web development. Our team follows Lean principles and works according to agile methodologies to deliver the best results reducing the budget for development and its timeline.

Find out more here and don't hesitate to contact us!

Resources

Casty is a small Android library that provides a simple media player for Chromecast. It's fully consistent with Google Cast v3.

A modern Android oAuth2 library using OkHttp with resource owner password grant types and easy token refreshing. This library aims to provide a solution for the less commonly used resource owner password grant type as well as providing dynamic parameter support that can be used with frameworks that allow for more flexible and dynamic oAuth2 parameters.

Android Starter is a starter project which implements MVP Pattern. It includes libraries:

  • RxJava2
  • RxAndroid
  • Dagger2
  • Butterknife
  • Crashlytics
  • Timber
  • GreenDao
  • Realm
  • Retrofit
  • OkHttp
  • Gson
  • Picasso

Implementation of List Item from Material Design guidelines.

Android Toolbar with marqueeable title / subtitle.

Shareable is a small android library to help implement direct share and social media actions into your android app. For example if you want to share something specifically to Twitter or Facebook.

The API is design to allow you to specify specific social channels to share to using the Builder design pattern. If the app is not available the default is to use all Intent.ACTION_SEND apps on the phone.

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