##BouncingJellyView
可以嵌套任何View,滑动到顶部或者底部,会有一个阻尼效果进行缩放整个页面,松开手指回弹。灵感来自于MIUI。
-
添加Jitpack
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
-
在gradle中compile
compile 'com.github.aohanyao:BouncingJelly:1.0.4'
-
xml
因为BouncingJellyView是继承自ScrollView,所以必须要嵌套一层ViewGroup才能使用。
<com.aohanyao.jelly.library.BouncingJellyView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<任意ViewGroup>
.........你的内容
</任意ViewGroup>
</com.aohanyao.jelly.library.BouncingJellyView>
剔除多余的包
1.0.0
初步完成,增加到仓库。