TintLayout

Additional

Language
Java
Version
1.0.2 (Jul 26, 2015)
Created
Jul 26, 2016
Updated
May 21, 2018 (Retired)
Owner
Basil Miller (GIGAMOLE)
Contributors
Ravindra Kumar (ravidsrk)
Basil Miller (GIGAMOLE)
2
Activity
Badge
Generate
Download
Source code

TintLayout

This library help you to achieve popular tint effect from view.

                       

You can check the sample app here.

Warn

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.

Download

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>

Android SDK Version

TintLayout requires a minimum SDK version of 11.

Sample

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>

Getting Help

To report a specific problem or feature request, open a new issue on Github.

Author

Created by Basil Miller - @gigamole