gpt4 book ai didi

android - 在动画之前隐藏 ImageView

转载 作者:行者123 更新时间:2023-11-29 20:49:35 27 4
gpt4 key购买 nike

我有一个 ImageView ,我正在为其应用动画,按下按钮时它必须在屏幕上上下移动。但在按下按钮之前,我想隐藏图像。

我正在使用以下代码:

final Animation animation = AnimationUtils.loadAnimation(this,
R.anim.aim);
animation.reset();
maxName.startAnimation(animation);

动画.xml

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="4000"
android:fromYDelta="15%p"
android:repeatCount="2"
android:repeatMode="reverse"
android:toYDelta="60%p" />

为了在按下按钮之前隐藏图像,我应该进行哪些更改。

提前致谢。

最佳答案

尝试添加

android:visibility="invisible"

到您的 xml 文件中的元素?如果您希望元素在您的布局中不占用任何空间,您也可以使用 gone 而不是 invisible

然后当按下按钮时,您可以在运行时更改元素的可见性:

final Animation animation = AnimationUtils.loadAnimation(this,
R.anim.aim);
animation.reset();
maxName.setVisibility(View.VISIBLE);
maxName.startAnimation(animation);

关于android - 在动画之前隐藏 ImageView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29493448/

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