This library help you to achieve popular tint effect from view.
You can check the sample app here.
This library is not more supported.
If you want to add new feature or fix a bug, grab source code and do it.
If you think your fix or feature would be useful to other developers,
I can add link of your repository to this README file.
Thank you for using our libraries.
You can download a .aar
from GitHub's releases page.
Or Gradle:
compile 'devlight.io:tintlayout:1.0.3'
Or Maven:
<dependency>
<groupId>devlight.io</groupId>
<artifactId>tintlayout</artifactId>
<version>1.0.3</version>
<type>pom</type>
</dependency>
Or Ivy:
<dependency org='devlight.io' name='tintlayout' rev='1.0.3'>
<artifact name='$AID' ext='pom'></artifact>
</dependency>
TintLayout
requires a minimum SDK version of 11.
Parameters
You can set such parameters as:
-
color:
allows you to set solid color. -
colors:
allows you to create shadow with transparent etc. -
angle:
allows you to set the angle of tint.
Tips
TintLayout
must have child. Only one child.
The angle can only be positive and be in range from 0 to 360.
Init
Check out in code init:
final TintLayout tintLayout = (TintLayout) findViewById(R.id.tint_layout);
tintLayout.setAngle(145);
To invalidate tint call this method:
tintLayout.invalidateTint();
And XML init:
<devlight.io.library.TintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tl_angle="45"
app:tl_color="@color/color"
app:tl_colors="@array/colors">
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</devlight.io.library.TintLayout>
To report a specific problem or feature request, open a new issue on Github.
Created by Basil Miller - @gigamole
Here you can see open source work developed by Devlight LLC.
This and another works is an exclusive property of Devlight LLC.
If you want to use this library in applications which will be available on Google Play, please report us or author of the library about it.
Whether you're searching for a new partner or trusted team for creating your new great product we are always ready to start work with you.
You can contact us: info@devlight.io or opensource@devlight.io.
Thanks in advance.
Devlight LLC, 2016
devlight.io