ShadowHelper Save

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

Project README

ShadowHelper

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

Open Source Agenda is not affiliated with "ShadowHelper" Project. README Source: zhengcx/ShadowHelper
Stars
325
Open Issues
3
Last Commit
2 years ago

Open Source Agenda Badge

Open Source Agenda Rating