Atelier


Source link: https://github.com/Musenkishi/Atelier

Atelier

Every artist needs a place where he can paint in peace and store his tools such as palette and swatches.

This is a library aiming to simplify the use of Palette, especially in lists such as ListView, GridView, or RecyclerView.

Download

Add the Jitpack repository to your project-level or module-level build.gradle:

repositories {
  maven {

url "https://jitpack.io"
  
}
 
}

Now, you can add the Atelier dependency:

compile 'com.github.Musenkishi:Atelier:1.3.1'

Usage

Currently Atelier supports classes (and extensions of):

  • View
  • ImageView (masking and background)
  • TextView
  • Floating Action Button (icon masking and background)
  • CardView

If the supplied view is or extends View, Atelier will apply the color to the background. If view extends ImageView and you use .mask(), Atelier will apply the color to the image, not the background. This is also true for Floating Action Button. And if view is, or extends TextView, the color will be applied to the text, not the background. If view is or extends CardView, Atelier will apply the color through .setCardBackgroundColor().

Atelier.with(context, uniqueStringForBitmap) //For reuse purposes uniqueStringForBitmap could be the url for the image.

.load(bitmap)

.swatch(new DarkVibrantSwatch(ColorType.BACKGROUND))

.into(view, view2, ...);
 //Single or multiple views supported

Example

In this example Glide is used. Picasso example can be found in the sample project:

RequestListener<String, GlideDrawable> glideDrawableRequestListener = new RequestListener<String, GlideDrawable>() {

  @Override
  public boolean onResourceReady(GlideDrawable resource,

String model,

Target<GlideDrawable> target,

boolean isFromMemoryCache,

boolean isFirstResource) {

Bitmap bitmap = ((GlideBitmapDrawable) resource).getBitmap();

if (bitmap != null) {

 Context context = viewHolder.bottomBar.getContext();

  //Set color to a View's background

 Atelier.with(context, model)

 .load(bitmap)

 .swatch(new VibrantSwatch(ColorType.BACKGROUND))

 .into(viewHolder.bottomBar);

  //Set color to text in a TextView

 Atelier.with(context, model)

 .load(bitmap)

 .swatch(new VibrantSwatch(ColorType.TEXT_TITLE))

 .into(viewHolder.textViewResolution);

  //Colorize an ImageView/ImageButton with .mask().

 //Best result is accomplished with a white image (transparent bakground).

 Atelier.with(context, model)

 .load(bitmap)

 .fallbackColor(viewHolder.textViewResolution.getCurrentTextColor())

 .swatch(new VibrantSwatch(ColorType.TEXT_TITLE))

 .mask()

 .into(viewHolder.imageButton);

 
}

 return false;

}

  
}
;

Glide.with(viewHolder.bottomBar.getContext())

 .load(imageUrl)

 .fitCenter()

 .placeholder(R.color.Transparent)

 .listener(glideDrawableRequestListener)

 .into(viewHolder.imageView);

Atelier will generate the palette in a separate thread (up to 5 threads on post-lollipop) and apply the color in the assigned view.

License

Copyright 2015 Freddie Lust-Hed  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

We often use the RecyclerView and the RecyclerView.Adapter for our material design apps. Going from the ListView to RecyclerView, I really missed the setEmptyView() method.

So, I extended the original RecyclerView Adapter to help manage different states in the application. The Adapter, apart from the standard list, supports three different views:

  • Loading View (While Data is being fetched)
  • Empty View (When there is not data)
  • Error View (In case of an error while fetching data)

Automated configuration RecyclerView.Adapter for Android.

A Kotlin In App Purchase library that lets you easily manage your billing process in Android.

InstaLikeFragmentTransaction is an open source repository with custom Bottom tab Fragment backstack transaction and stack history for Tabs.

Quick Action is a small android library for easy create Tooltips with some action or just as decoration.

Not just a Tooltips, This a Tooltips with Action!

A library to access USB mass storage devices (pen drives, external HDDs, card readers) using the Android USB Host API. Currently it supports the SCSI command set and the FAT32 file system.

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