IconView

One image resource for multiple colors

License

License

GroupId

GroupId

ru.noties
ArtifactId

ArtifactId

iconview
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

IconView
One image resource for multiple colors
Project URL

Project URL

https://github.com/noties/IconView
Source Code Management

Source Code Management

https://github.com/noties/IconView

Download iconview

How to add to project

<!-- https://jarcasting.com/artifacts/ru.noties/iconview/ -->
<dependency>
    <groupId>ru.noties</groupId>
    <artifactId>iconview</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/ru.noties/iconview/
implementation 'ru.noties:iconview:1.0.0'
// https://jarcasting.com/artifacts/ru.noties/iconview/
implementation ("ru.noties:iconview:1.0.0")
'ru.noties:iconview:aar:1.0.0'
<dependency org="ru.noties" name="iconview" rev="1.0.0">
  <artifact name="iconview" type="aar" />
</dependency>
@Grapes(
@Grab(group='ru.noties', module='iconview', version='1.0.0')
)
libraryDependencies += "ru.noties" % "iconview" % "1.0.0"
[ru.noties/iconview "1.0.0"]

Dependencies

compile (1)

Group / Artifact Type Version
com.android.support » support-annotations jar 25.3.1

Project Modules

There are no modules declared in this project.

IconView

One image resource for multiple colors

Maven Central

Simple one-class library for applying different colors to one image resource.

screenshot

<ru.noties.iconview.IconView
    android:id="@+id/icon_view"
    android:layout_width="48dip"
    android:layout_height="48dip"
    android:scaleType="centerInside"
    app:iv_color="#FF0"/>
final IconView iconView = (IconView) findViewById(R.id.icon_view);
iconView.setColor(ContextCompat.getColor(this, R.color.colorAccent));

Underneath it just uses ProterDuffColorFilter with MULTIPLY mode, so solid white image resources are a good fit. If you want to change porter duff mode add attribute to your layout definition via: app:iv_mode="src_atop" or Java: iconView.setMode(PorterDuff.Mode.SRC_ATOP)

License

  Copyright 2017 Dimitry Ivanov ([email protected])

  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.

Versions

Version
1.0.0