gpt4 book ai didi

android - 如何在Android启动画面中为 Logo 添加弹跳动画效果?

转载 作者:行者123 更新时间:2023-11-29 21:08:15 25 4
gpt4 key购买 nike

好吧,我已经创建了一个以 Logo 为中心的启动画面,现在我想为其添加动画,就像 Logo 从屏幕顶部掉落并反弹一次并停在屏幕中央。

谁能帮帮我。

最佳答案

First position your logo to the center take reference of that logo and check below code : 

bounce.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:interpolator="@android:anim/bounce_interpolator">

<scale
android:duration="2000"
android:fromXScale="1.0"
android:fromYScale="0.0"
android:toXScale="1.0"
android:toYScale="1.0" />

</set>

use abow xml in your splash activity like this :

Animation an2=AnimationUtils.loadAnimation(this,R.anim.bounce);
your_logo.startAnimation(an2);

关于android - 如何在Android启动画面中为 Logo 添加弹跳动画效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23800679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com