带阴影动画或弹跳背景的按钮

时间:2018-01-29 12:42:27

标签: android android-animation androiddesignsupport android-designer

如何在Android中设计弹跳背景动画?我希望这个动画没有任何事件提升。

enter image description here

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

在应用的 bouncing_bg.xml 文件夹中创建drawable

<ripple
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="#aeaeae" />

并将以下行添加到要显示效果的View

android:foreground="@drawable/bouncing_bg"

注意:这只适用于API级别21及以上版本。