Android Colored Vector Drawable

Additional

Language
Java
Version
v1.0.0 (Aug 12, 2016)
Created
Jul 29, 2016
Updated
Apr 7, 2017 (Retired)
Owner
Balram Pandey (balrampandey19)
Contributor
Balram Pandey (balrampandey19)
1
Activity
Badge
Generate
Download
Source code

Advertisement

Android Colored Vector Drawable

Use this library to change colors of your vector drawables easily from your code.

If you want to set a colored vector in Imageview:​

 DrawableHelper
            .withContext(this)
            .withColor(R.color.white)
            .withDrawable(R.drawable.ic_search_24dp)
            .tint()
            .applyTo(mSearchItem);
            

If you want to set a colored vector as a ToolBar icon:

 final Drawable drawable = DrawableHelper
            .withContext(this)
            .withColor(R.color.white)
            .withDrawable(R.drawable.ic_search_24dp)
            .tint()
            .get();
    actionBar.setHomeAsUpIndicator(drawable);
            

Gradle Dependency

Repository

The Gradle dependency is available via jCenter. jCenter is the default Maven repository used by Android Studio.

dependencies {
compile 'co.balrampandey:library:0.1.1'
}

License

Copyright 2016 Balram Pandey

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.