ShadowHelper

Project Url: zhengcx/ShadowHelper
Introduction: A library to add shadows for the Android View.(一个方便为 Android View 添加自然的阴影的库)
More: Author   ReportBugs   
Tags:

A library to add shadows for the Android View.(一个方便为 Android View 添加自然的阴影的库)

demo.gif

How to use

1.Step 1: Add the JitPack repository to your build file

allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

2.Step 2: Add the dependency

dependencies {
            compile 'com.github.zhengcx:ShadowHelper:v1.0'
    }

3.Step 3: Use in Java code like this:

 TextView textView1 = findViewById(R.id.tv_1);
 ShadowConfig.Builder config = new ShadowConfig.Builder()
                .setColor(mColor[0])//View 颜色
                .setShadowColor(mShadowColor)//阴影颜色
                .setGradientColorArray(mColor)//如果 View 是渐变色,则设置 color 数组
                .setRadius(mRadius)//圆角
                .setOffsetX(mOffsetX)//横向偏移
                .setOffsetY(mOffsetY);//纵向偏移

ShadowHelper.setShadowBgForView(textView1, config);

End 欢迎 Star/Fork/Issue.

License

Apache2.0.

About Me

Apps
About Me
GitHub: Trinea
Facebook: Dev Tools