The Wayback Machine - http://web.archive.org/web/20201122022014/https://github.com/zhengcx/ShadowHelper
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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

About

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

Topics

Resources

Packages

No packages published

Languages

You can’t perform that action at this time.