README.md 1.1 KB
Newer Older
1 2
# PowerfulViewLibrary

C
chaychan 已提交
3
###PowerfulEditText介绍  
4

C
chaychan 已提交
5
[https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/PowerfulEditText.md](https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/PowerfulEditText.md)
6

C
chaychan 已提交
7
###NumberRunningTextView介绍 
8

C
chaychan 已提交
9
[https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/PowerfulEditText.md](https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/NumRunningTextView.md)
10

C
chaychan 已提交
11
###ExpandableLinearLayout介绍 
12

C
chaychan 已提交
13
[https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/PowerfulEditText.md](https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/ExpandableLinearLayout.md)
14 15

####**导入方式**####
16 17 18 19 20 21 22 23 24 25 26 27 28
在项目根目录下的build.gradle中的allprojects{}中,添加jitpack仓库地址,如下:

    allprojects {
	    repositories {
	        jcenter()
	        maven { url 'https://jitpack.io' }//添加jitpack仓库地址
	    }
	}
 
打开app的module中的build.gradle,在dependencies{}中,添加依赖,如下:

    dependencies {
			......
C
chaychan 已提交
29
	        compile 'com.github.chaychan:PowerfulViewLibrary:1.1.7'
30
	}