TedPicker


Source link: https://github.com/ParkSangGwon/TedPicker

What is TedPicker?

TedPicker is image selector library for android and allows you to easily take a picture from gallery or camera without using a lot of boilerplate code.
Do not waste your time for writing image select function code. You can take a picture or select image from gallery.

Also you can customize color, drawable, select count, etc for your application.

Demo

Watch video at youtube

Setup

Gradle

We will use cwac-camera for take a picture. And get library from jitpack.io

repositories {

  maven {
 url "https://repo.commonsware.com.s3.amazonaws.com" 
}

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

 compile 'com.github.ParkSangGwon:TedPicker:v1.0.10' 
}
 
Permission

Add permission for Camera, External Storage.

<uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />  <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
Activity

Declare Activity in your AndroidManifest.xml

<activity android:name="com.gun0912.tedpicker.ImagePickerActivity"

android:screenOrientation="portrait" /> 

you have to use AppCompat theme like this. ImagePickerActivity use toolbar without actionbar

 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

<!-- Customize your theme here. -->

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

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

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

  <item name="windowActionBar">false</item>

<item name="windowNoTitle">true</item> 

How to use

1. Start Activity

Add your request code for startActivityForResult() and start ImagePickerActivity

 private static final int INTENT_REQUEST_GET_IMAGES = 13;

private void getImages() {

 Intent intent  = new Intent(this, ImagePickerActivity.class);

startActivityForResult(intent,INTENT_REQUEST_GET_IMAGES);

}
 
2. Receive Activity

If you finish image select, you will recieve image path array (Uri type)

 @Override
  protected void onActivityResult(int requestCode, int resuleCode, Intent intent) {

super.onActivityResult(requestCode, resuleCode, intent);

  if (requestCode == INTENT_REQUEST_GET_IMAGES && resuleCode == Activity.RESULT_OK ) {

ArrayList<Uri>  image_uris = intent.getParcelableArrayListExtra(ImagePickerActivity.EXTRA_IMAGE_URIS);

//do something

 
}

  
}
 

Customize

You can change color, drawable, height ...
Before call startActivityForResult(), set your Config instance to ImagePickerActivity

Example

  Config config = new Config();

config.setCameraHeight(R.dimen.app_camera_height);

config.setToolbarTitleRes(R.string.custom_title);

config.setSelectionMin(2);

config.setSelectionLimit(4);

config.setSelectedBottomHeight(R.dimen.bottom_height);

 ImagePickerActivity.setConfig(config);

 Intent intent = new Intent(this, ImagePickerActivity.class);

startActivityForResult(intent, INTENT_REQUEST_GET_IMAGES);
 
Function
  • setCameraHeight(R.dimen.xxx) (default: 250dp)

  • setSelectedBottomHeight(R.dimen.xxx) (default: 90dp)

  • setSelectedBottomColor(R.color.xxx) (default: R.attr.colorAccent)

  • setToolbarTitleRes(R.string.xxx) (default: Choice Image / ????)

  • setTabBackgroundColor(R.color.xxx) (default: #fff)

  • setTabSelectionIndicatorColor(R.color.xxx) (default: R.attr.colorPrimary)

  • setSelectionLimit(int)

  • setSelectionMin(int)

  • setCameraBtnImage(R.drawable.xxx)

  • setCameraBtnBackground(R.drawable.xxx)

  • setSelectedCloseImage(R.drawable.xxx)

  • setSavedDirectoryName(R.string.xxx) (default: Pictures)

  • setFlashOn(boolean) (default: false)

Thanks

License

Copyright 2016 Ted Park  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

A Mosby based VIPER library for Android.

It allows you to create clean, modular, decoupled and easy to test apps with ease by providing you a neat toolkit for applying the VIPER architecture. It is shipped with the modules generator to relieve you from composing modules by hand and to speed up your development even more!

A simple, and elegant alerting library. This library aims to overcome the limitations of Toasts and Snackbars, while reducing the complexity of your layouts. Easily integrated into any project.

This is a library for android app development. For making a shaped image and setting it on Image View this library will help you.

An awesome sliding button library for android.

Android library that generates app shortcuts for activities and methods annotated with @Shortcut. No need to touch the manifest, create XML files or use the shortcut manager. Just annotate the code that you want the shortcut to call.

A flexible view for providing a limited rect window into a large data set, just like a two-dimensional RecyclerView. It different from RecyclerView is that it's two-dimensional (just like a Panel) and it pin the itemView of first row and first column in their original location.

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