MCPcopy Index your code
hub / github.com/andremion/Louvre

github.com/andremion/Louvre @v1.3.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.3.0 ↗ · + Follow
225 symbols 497 edges 19 files 20 documented · 9%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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 Download

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.

Extension points exported contracts — how you extend this code

Callbacks (Interface)
(no doc)
louvre/src/main/java/com/andremion/louvre/data/MediaLoader.kt
Callbacks (Interface)
(no doc)
louvre/src/main/java/com/andremion/louvre/home/GalleryFragment.java

Core symbols most depended-on inside this repo

show
called by 8
sample/src/main/java/com/andremion/louvre/sample/NumberPickerDialog.java
getSelection
called by 4
louvre/src/main/java/com/andremion/louvre/home/GalleryActivity.java
isSelected
called by 4
louvre/src/main/java/com/andremion/louvre/home/GalleryAdapter.java
getData
called by 4
louvre/src/main/java/com/andremion/louvre/home/GalleryAdapter.java
setResult
called by 4
louvre/src/main/java/com/andremion/louvre/preview/PreviewActivity.java
getData
called by 4
louvre/src/main/java/com/andremion/louvre/preview/PreviewAdapter.java
setActionBarTitle
called by 3
louvre/src/main/java/com/andremion/louvre/home/GalleryActivity.java
setLayoutManager
called by 3
louvre/src/main/java/com/andremion/louvre/home/GalleryAdapter.java

Shape

Method 197
Class 24
Interface 4

Languages

Java93%
Kotlin7%

Modules by API surface

louvre/src/main/java/com/andremion/louvre/home/GalleryAdapter.java35 symbols
louvre/src/main/java/com/andremion/louvre/home/GalleryFragment.java33 symbols
louvre/src/main/java/com/andremion/louvre/preview/PreviewAdapter.java29 symbols
louvre/src/main/java/com/andremion/louvre/preview/PreviewActivity.java22 symbols
louvre/src/main/java/com/andremion/louvre/home/GalleryActivity.java22 symbols
louvre/src/main/java/com/andremion/louvre/data/MediaLoader.kt16 symbols
sample/src/main/java/com/andremion/louvre/sample/MainAdapter.java8 symbols
louvre/src/main/java/com/andremion/louvre/util/transition/MediaSharedElementCallback.java8 symbols
louvre/src/main/java/com/andremion/louvre/StoragePermissionActivity.java8 symbols
louvre/src/main/java/com/andremion/louvre/Louvre.java8 symbols
sample/src/main/java/com/andremion/louvre/sample/MainActivity.java7 symbols
sample/src/main/java/com/andremion/louvre/sample/MediaTypeFilterDialog.java6 symbols

For agents

$ claude mcp add Louvre \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page