• Stars
    star
    311
  • Rank 134,035 (Top 3 %)
  • Language
    Java
  • Created about 8 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A material design style pictures selector.

IPicker

A material design style pictures selector.

Screenshot

Usage

Gradle

dependencies {
   	implementation 'com.liuguangqiang.ipicker:IPicker:1.1.0'
}

Maven

<dependency>
  <groupId>com.liuguangqiang.ipicker</groupId>
  <artifactId>IPicker</artifactId>
  <version>1.1.0</version>
  <type>pom</type>
</dependency>

Manifest

<activity
     android:name="com.liuguangqiang.ipicker.IPickerActivity"
     android:screenOrientation="portrait"
     android:theme="@style/IPickerTheme" />

Theme

<style name="IPickerTheme" parent="Theme.AppCompat.Light.DarkActionBar">
     <item name="colorPrimary">@color/color_primary</item>
     <item name="colorPrimaryDark">@color/color_primary_dark</item>
     <item name="colorAccent">@color/color_primary</item>
 </style>

Open the picker

IPicker.setLimit(1);
IPicker.open(context);

Return the selected images by EventBus.

@Subscribe
public void onEvent(IPickerEvent event) {
}

Also support to get the selected images by a listener.

IPicker.setOnSelectedListener(new IPicker.OnSelectedListener() {

      @Override
      public void onSelected(List<String> paths) {}

});

License

Copyright 2016 Eric Liu

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.

More Repositories

1

SwipeBack

SwipeBack is an android library that can finish a activity by using gesture.
Java
1,739
star
2

Idaily

使用data binding , dagger2 , retrofit2和rxjava实现的,基于MVVM的知乎日报APP。
Java
570
star
3

CookieBar

CookieBar is a lightweight library for showing a brief message at the top or bottom of the screen.
Java
508
star
4

RippleLayout

A layout that implemented ripple effect for transition animation.
Java
247
star
5

AndroidDesignSupportSample

A sample that use the Android Support Design Library.
Java
145
star
6

awesome-android

A awesome list of organizations, developers and libraries.
45
star
7

SuperRecyclerView

A extension of the RecyclerView that using it more easy. Features : swipe to dismiss, drag and drop.
Java
24
star
8

PrettyProgressBar

A pretty progressbar.
Java
22
star
9

AndroidMVP

AndroidMVP is a library for using MVP more easy in android.
Java
21
star
10

AsyncDownload

AsyncDownload
Java
21
star
11

TwoSidedLayout

TurnLayout is a view that able to show the back side.
Java
17
star
12

AsyncOkHttp

An Android HTTP Library with OkHttp.
Java
15
star
13

MultiLayout

TabLayout
Java
6
star
14

i-coding

5
star
15

PermissionHelper

A helper for checking and requesting permissions for app that targeting Android M.
Java
4
star
16

MaterialDialog

A small library for building material dialog
Java
4
star
17

support

A collection of widgets that usually used in my projects.
Java
3
star
18

TensorFlowStudying

Jupyter Notebook
3
star
19

Running-Kotlin

Kotlin
1
star
20

awesome-plugins

A list of awesome plugins for development tools.
1
star
21

android-fastlane-ndk

Dockerfile
1
star
22

liuguangqiang.github.com

liuguangqiang.github.com
HTML
1
star
23

BowEvent

A simple event bus for android
Java
1
star
24

LeetCode

Java
1
star