Android -------- BouncingJellyView 果冻视图(阻尼效果)

Posted 切切歆语

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 果冻视图(阻尼效果)的主要内容,如果未能解决你的问题,请参考以下文章

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

android 21 是啥版本

Android逆向-Android基础逆向(2-2)

【Android笔记】android Toast

图解Android - Android核心机制