gpt4 book ai didi

Android - 屏幕中的图像散射

转载 作者:行者123 更新时间:2023-11-30 03:01:28 25 4
gpt4 key购买 nike

当点击屏幕上的按钮时,我需要图像散布在屏幕中(如满屏散落的星星)但需要图像从下到上散布。我认为使用动画是可能的,但我找不到解决方案。任何人都可以帮助我。

最佳答案

在res文件夹下的xml文件夹中使用这个bottom_up.xml:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromYDelta="75%p" android:toYDelta="0%p"
android:fillAfter="true"
android:duration="500"/>
</set>

在 Activity 代码中:

Animation bottomUp = AnimationUtils.loadAnimation(getContext(),
R.anim.bottom_up);

yourbutton.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
yourimageview.startanimation(bottomUp);
}
});

关于Android - 屏幕中的图像散射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22472113/

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