Material Icon Library


Source link: https://github.com/code-mc/material-icon-lib

Material Icon Library

A library containing over 2000 material vector icons that can be easily used as Drawable, a standalone View or inside menu resource files. Tired of having to search for and generate png resources every time you want to test something? This library puts an end to that burden and makes swapping icons a breeze, check out the usage below and you'll see why.

Demo

Stats

  • MinSdk 4
  • LIVE previews and code completion in the Android Studio Designer (Does NOT work out of the box, see step 0 below!)
  • Currently contains 2046 icons, you can look at them here: https://materialdesignicons.com
  • Configured in less than a minute
  • Adds about 220kb to your apk (so a wopping average of 112 bytes per icon)
  • Includes a custom Drawable, IconView and a MenuInflater for all different icon use cases

Usage

Step 0

Now I still have your attention, to get the previews to work in Android Studio you'll have to put the font file inside the assets of your project yourself. Due to a bug it does not think about looking inside the library's assets for some odd reason.

Get the font file here.

You don't have to worry about android including the file twice in your apk. Android Studio recognizes the duplicate file name and only keeps one copy in your apk!

Previews work inside layout files, menu resource files sadly do not support previews (more on those below).

Step 1

Gradle

dependencies {

  compile 'net.steamcrafted:materialiconlib:1.1.4' 
}

Step 2

There's a total of 3 different use cases (click the links to jump to their section). You can use the provided MaterialIconView which mostly is just a more advanced ImageView or use your preferred ImageView and use the MaterialDrawable as Drawable resource. If you want to spice up your Toolbar with icons from this library there is a custom MaterialMenuInflater that does just that in a single line of code.

MaterialIconView

Add the view to your XML:

<net.steamcrafted.materialiconlib.MaterialIconView
  xmlns:app="http://schemas.android.com/apk/res-auto" <!-- VERY IMPORTANT -->

android:layout_width="48dp"
  android:layout_height="48dp"
  app:materialIcon="clipboard_arrow_down" <!-- This sets the icon, HAS AUTOCOMPLETE ;) -->
  app:materialIconColor="#fff" <!-- Sets the icon color -->
  app:materialIconSize="24dp"  <!-- Sets the icon size -->
  android:scaleType="center" <!-- Centers the icon (all scale types supported) -->
  android:background="@android:color/darker_gray"
  android:id="@+id/icon" />

You can also use the other route: the "wrap_content" way:

<net.steamcrafted.materialiconlib.MaterialIconView
  xmlns:app="http://schemas.android.com/apk/res-auto" <!-- VERY IMPORTANT -->

android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:padding="12dp" <!-- now we use a padding to center the icon -->
  app:materialIcon="clipboard_arrow_down" <!-- This sets the icon, HAS AUTOCOMPLETE ;) -->
  app:materialIconColor="#fff" <!-- Sets the icon color -->
  app:materialIconSize="24dp"  <!-- Sets the icon size -->
  <!-- scaleType is no longer required for this method -->
  android:background="@android:color/darker_gray"
  android:id="@+id/icon" />

The view is inherited from ImageView. This means that you can use any and all features of the very flexible ImageView BUT be reminded that this view does not cache any of the drawables it creates, so every time you change something about the icon, it's going to regenerate the drawable. Using this view inside listviews is highly discouraged, if you want to use these icons in a ListView, cache the drawables and use the MaterialDrawableBuilder in combination with an ImageView!

As mentioned before this extends the android ImageView class, there's a few methods unique to this particular view:

// Sets the icon, all 1000+ icons are available inside the MaterialDrawableBuilder.IconValue enum yourMaterialIconView.setIcon(IconValue iconValue);
  // Sets the size of the icon to the default action bar icon size yourMaterialIconView.setToActionbarSize();
  // Provide a dimension resource to use as icon size yourMaterialIconView.setSizeResource(int dimenRes);
  // Set the icon size using a value in dp units yourMaterialIconView.setSizeDp(int size);
  // Set the icon size using a pixel value yourMaterialIconView.setSizePx(int size);
  // Set the icon color yourMaterialIconView.setColor(int color);
  // Set the icon color using a color resource yourMaterialIconView.setColorResource(int colorRes);
  // Set the icon's alpha value (0-255) 0 for completely transparent yourMaterialIconView.setAlpha(int alpha);
  // Sets a custom colorfilter to the drawing paint (for the more advanced devs) yourMaterialIconView.setColorFilter(ColorFilter cf);
  // Clear the color filter set using above method yourMaterialIconView.clearColorFilter();
  // Sets a custom paint style (for the more advanced devs) yourMaterialIconView.setStyle(Paint.Style style);

// You can use any of the ImageView methods as well: yourMaterialIconView.setBackgroundColor(Color.WHITE) yourMaterialIconView.setScaleType(ScaleType.CENTER) // etc...

MaterialDrawable

That was easy, right? Next up the custom drawables, they are internally used by the MaterialIconView so you'll see that they share many of the same methods.

The initialisation happens using the MaterialDrawableBuilder, which you can use to set all the properties of the drawable:

// The method returns a MaterialDrawable, but as it is private to the builder you'll have to store it as a regular Drawable ;) Drawable yourDrawable = MaterialDrawableBuilder.with(context) // provide a context

.setIcon(MaterialDrawableBuilder.IconValue.WEATHER_RAINY) // provide an icon

.setColor(Color.WHITE) // set the icon color

.setToActionbarSize() // set the icon size
  .build();
 // Finally call build

This will throw an IconNotSetException if you forget to provide an icon.

Once you call build, your Drawable will be spit out and you are ready to use it everywhere you please! Setting it to a view is just as easy as with any other Drawable (e.g. for ImageView):

yourImageView.setImageDrawable(yourDrawable);

And that's all there is to it. Below are all the methods you can use with the MaterialDrawableBuilder for reference.

// Sets the icon, all 1000+ icons are available inside the MaterialDrawableBuilder.IconValue enum builder.setIcon(IconValue iconValue);
  // Builds the drawable, this method always comes last ofcourse builder.build();
  // Sets the size of the icon to the default action bar icon size builder.setToActionbarSize();
  // Provide a dimension resource to use as icon size builder.setSizeResource(int dimenRes);
  // Set the icon size using a value in dp units builder.setSizeDp(int size);
  // Set the icon size using a pixel value builder.setSizePx(int size);
  // Set the icon color builder.setColor(int color);
  // Set the icon color using a color resource builder.setColorResource(int colorRes);
  // Set the icon's alpha value (0-255) 0 for completely transparent builder.setAlpha(int alpha);
  // Sets a custom colorfilter to the drawing paint (for the more advanced devs) builder.setColorFilter(ColorFilter cf);
  // Clear the color filter set using above method builder.clearColorFilter();
  // Returns the alpha value builder.getOpacity();
  // Sets a custom paint style (for the more advanced devs) builder.setStyle(Paint.Style style);

MaterialMenuInflater

With the MaterialMenuInflater you can use any of the icons available in this library inside your menu resource files. In XML you'd have to do the following:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto" <!-- important, you'll have to include this to use the custom xml attributes --> 
 xmlns:tools="http://schemas.android.com/tools" >  
 <!-- example of a menu item with an icon --> 
 <item 

  android:title="Disable Wifi" 

  app:showAsAction="always" 

  app:materialIcon="wifi_off" <!-- This sets the icon, HAS AUTOCOMPLETE ;) --> 

  app:materialIconColor="#FE0000" <!-- Sets the icon color --> 
 />  </menu>

To actually inflate this menu you'll now have to use the MaterialMenuInflater instead of the default one. For the AppCompatActivity do the following in your onCreateOptionsMenu:

@Override public boolean onCreateOptionsMenu(Menu menu) {

  MaterialMenuInflater

 .with(this) // Provide the activity context

 // Set the fall-back color for all the icons. Colors set inside the XML will always have higher priority

 .setDefaultColor(Color.BLUE)

 // Inflate the menu

 .inflate(R.menu.your_menu_resource, menu);

  return true; 
}

Since the release of the Appcompat-v7 library you can also use the Toolbar view inside your XML layouts. Inflating a menu for a toolbar is a bit different from the usual way, but it is just as easy:

// Get the toolbar from layout Toolbar toolbar = (Toolbar) findViewById(R.id.your_toolbar);
  MaterialMenuInflater

.with(this) // Provide a context, activity context will do just fine

// Set the fall-back color for all the icons. Colors set inside the XML will always have higher priority

.setDefaultColor(Color.BLUE)

// Inflate the menu

.inflate(R.menu.your_menu_resource, toolbar.getMenu());

And that's all there is to it.

License

Released under the Apache 2.0 License

Resources

Fit

Framework for dispatching various procedure on update application.

If you tired from wrapping your Views with RelativeLayout to add ProgressBar then this small view will help you. It extends from RelativeLayout, so you shouldn't add additional layouts to use it, just think about it as a RelativeLayout with auto added ProgressBar.

Wizard Pager is a library that provides an example implementation of a Wizard UI on Android.

Artiste is an Android library for drawing shapes on a canvas.

This project can make it easy to theme and custom Android's dialog. Also contains Holo and Material themes for old devices.

BabushkaText is a custom TextView which lets you customize the styling of parts of your text via Spannables, but without the hassle of having to deal directly with Spannable themselves.

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