README.md 1.4 KB
Newer Older
1 2
# PowerfulViewLibrary

3
###PowerfulEditText(功能强大的EditText)介绍  
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

7
###NumberRunningTextView(仿支付宝数字滚动的TextView)介绍 
8

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

11
###ExpandableLinearLayout(可展开收起的LinearLayout)介绍 
12

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

15
###BottomBarLayout(轻量级底部导航栏)介绍
C
chaychan 已提交
16 17

[https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/BottomBarLayout.md](https://github.com/chaychan/PowerfulViewLibrary/blob/master/readmes/BottomBarLayout.md)
18

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

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

    dependencies {
32
	        compile 'com.github.chaychan:PowerfulViewLibrary:1.2.1'
33
	}