• Stars
    star
    638
  • Rank 70,537 (Top 2 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created almost 8 years ago
  • Updated over 3 years ago

Reviews

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

Repository Details

A small customizable library useful to handle an gallery image pick action built-in your app. 🌄🌠

Icon

Louvre

A small customizable image picker. Useful to handle an gallery image pick action built-in your app.


License Apache 2.0 minSdkVersion 19 compileSdkVersion 25 maven-central

Android Arsenal Louvre MaterialUp Louvre

Sample
*Images from Google Image Search

Installation

Add this in your root build.gradle file (not your app module build.gradle file):

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

Then, add the library in your app module build.gradle

dependencies{
    compile 'com.github.andremion:louvre:[LATEST VERSION]'
}

Usage

Choose one of the Louvre themes to use in GalleryActivity and override it to define your app color palette.

<style name="AppTheme.Louvre.Light.DarkActionBar" parent="Louvre.Theme.Light.DarkActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.Louvre.Dark" parent="Louvre.Theme.Dark">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.Louvre.Light" parent="Louvre.Theme.Light">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

For PreviewActivity you just need to define the accent color.

<style name="AppTheme.Louvre.Preview" parent="Louvre.Theme.Preview">
    <item name="colorAccent">@color/colorAccent</item>
</style>

Declare the Louvre activities in AndroidManifest.xml file using your new app themes.

<activity
    android:name="com.andremion.louvre.home.GalleryActivity"
    android:theme="@style/AppTheme.Louvre.Light.DarkActionBar" />
<activity
    android:name="com.andremion.louvre.preview.PreviewActivity"
    android:theme="@style/AppTheme.Louvre.Preview" />

Add READ_EXTERNAL_STORAGE permission in your AndroidManifest.xml file.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

In your Activity you just need the below lines of code to open the Louvre.

Louvre.init(myActivity)
        .setRequestCode(LOUVRE_REQUEST_CODE)
        .open();

You can also use a Fragment to open the Louvre. In this case, the Fragment will get the onActivityResult callback.

Louvre.init(myFragment)
        .setRequestCode(LOUVRE_REQUEST_CODE)
        .open();

But you can customize the picker:

######Setting the max images allowed to pick

louvre.setMaxSelection(10)

######Setting the current selected items

List<Uri> selection;
...
louvre.setSelection(selection)

######Setting the media type to filter the query with a combination of one of these types: Louvre.IMAGE_TYPE_BMP, Louvre.IMAGE_TYPE_JPEG, Louvre.IMAGE_TYPE_PNG

louvre.setMediaTypeFilter(Louvre.IMAGE_TYPE_JPEG, Louvre.IMAGE_TYPE_PNG)

See more at the sample

Libraries and tools used in the project

  • Design Support Library The Design package provides APIs to support adding material design components and patterns to your apps.
  • CounterFab A FloatingActionButton subclass that shows a counter badge on right top corner.
  • Glide An image loading and caching library for Android focused on smooth scrolling
  • PhotoView Implementation of ImageView for Android that supports zooming, by various touch gestures.

Contributing

Contributions are always welcome!

Issues: Fell free to open a new issue. Follow the ISSUE_TEMPLATE.MD

Follow the "fork-and-pull" Git workflow.

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Merge with current development branch
  5. Push your work back up to your fork
  6. Submit a Pull request your changes can be reviewed (please refere the issue if reported)

Prevent code-style related changes. Format the code before commiting.

License

Copyright 2017 André Mion

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

Music-Player

From UI Proposal to Code 🎶▶️
Java
3,517
star
2

Floating-Navigation-View

A simple Floating Action Button that shows an anchored Navigation View
Java
1,293
star
3

CounterFab

A FloatingActionButton subclass that shows a counter badge on right top corner
Kotlin
728
star
4

Theatre

Pet project using Clean Architecture + MVVM + Reactive Extensions + Android Architecture Components. The data are fetched from LondonTheatreDirect API. 🎭
Kotlin
640
star
5

Music-Cover-View

Subclass of ImageView that 'morphs' into a circle shape and can rotates. Useful to be used as album cover in Music apps. 📀🎶
Java
261
star
6

UI-Motion

How to apply meaningful and delightful motion in a sample Android app
Java
168
star
7

Android-Animated-Icons

How to improve the user experience using animated icons with vector drawables on Android
Java
116
star
8

Villains-and-Heroes

Android app built with MVP architectural approach and uses Marvel Comics API that allows developers everywhere to access information about Marvel's vast library of comics. ⚡
Java
54
star
9

Scrolling-techniques-using-Android-Design-Support-Library

Como aplicar as técnicas de rolagem do Material Design usando a biblioteca de suporte Android Design Support Library
Java
22
star
10

Jobster

A proof of concept of Multiplatform Compose for Android and iOS using Google Gemini API
Kotlin
21
star
11

RetroBeat

A multiplatform music player app with the vibe of good old vinyl players, targeting Android and iOS
Kotlin
17
star
12

Bikes

A sample of Unidirectional Data Flow ♺ usage. Bike data are fetched from CityBikes API. 🚴🏻‍♂️
Kotlin
10
star
13

AndroidDevChallenge-Compose-CountdownTimer

A Simple Countdown Timer for the propose of #AndroidDev Challenge 2
Kotlin
5
star
14

Hostel

Kotlin
5
star
15

SlidingPuzzle

A Kotlin multiplatform puzzle game based on the Sliding-Puzzle problem that uses A* search algorithm to solve it
Kotlin
4
star
16

flutter_github_repos

A simple Flutter application to start playing with Flutter. This app just shows Flutter repositories on GitHub paginating by 10 repos a time.
Dart
4
star
17

Github

Kotlin
3
star
18

ProtonMail

Kotlin
2
star
19

Movie

Kotlin
2
star
20

AndroidDevChallenge-Compose-MySoothe

Kotlin
1
star
21

IMDb

Kotlin
1
star
22

AndroidDevChallenge-Compose-Weather

Kotlin
1
star
23

andremion

1
star
24

boomerang

A Unidirectional Data Flow (UDF) multiplatform library (Work in progress)
Kotlin
1
star