莫道桑榆晚,为霞尚满天。这篇文章主要讲述Android --------BouncingJellyView 果冻视图(阻尼效果)相关的知识,希望能为你提供帮助。
分享一个不错的效果,分享给大家
BouncingJellyView 果冻视图,就像果冻一样伸缩弹跳,也叫阻尼效果。这个效果在MIUI上面到处都可以看到。
效果图:
文章图片
使用
项目更目录bulid.gradle下
allprojects {
repositories {
...
maven { url \'https://jitpack.io\' }
}
}
app目录下bulid.gradle中
compile \'com.github.aohanyao:BouncingJelly:1.0.4\'
布局
< ?xml version="1.0" encoding="utf-8"?> < 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" app:layout_behavior="@string/appbar_scrolling_view_behavior" > < !--这里面放阻尼效果的布局--> < LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> < ListView android:id="@+id/listview" android:layout_width="match_parent" android:layout_height="match_parent" android:overScrollMode="never" /> < /LinearLayout> < /com.aohanyao.jelly.library.BouncingJellyView>
这样就可以了,很简单
代码:https://github.com/aohanyao/BouncingJelly/tree/master
【Android --------BouncingJellyView 果冻视图(阻尼效果)】
推荐阅读
- session与application对象
- Android-閫氳繃GPS鎴栬€呯綉缁滆幏鍙栧綋鍓嶄綅缃?kotlin
- androidStudio&Intellij IDEA 通用快捷键
- Android 极光IM-高级篇-玩聊天app诞生
- Android的启动模式
- android sdk 没找到draw9patch.bat 如何制作.9.png 格式图片
- Caused by: java.lang.IllegalStateException: Ambiguous mapping found
- Linux Centos7 —sshd远程登录,密钥对登录,TCPWrappers访问控制
- PowerShell数组用法例子