gpt4 book ai didi

android - 在 android 中为两个 ImageView 设置动画

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

我在主线性布局中有两个线性布局,我设置了两个线性布局的背景图像。现在我想一张一张地显示两个图像。第一张图片应该以淡入淡出的方式缓慢显示;完成此操作后,第二张图像也应以淡入淡出的方式缓慢显示。我怎样才能做到这一点?我的代码和屏幕截图如下。提前致谢。

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout
android:layout_weight="15"
android:id="@+id/L1"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@drawable/b2">
</LinearLayout>

<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#ffffffff" />

<LinearLayout
android:layout_weight="85"
android:id="@+id/L2"
android:orientation="vertical"`
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@drawable/b1">
</LinearLayout>

</LinearLayout>

最佳答案

程序化解决方案(在 Java 中):

ObjectAnimator animPic1 = ObjectAnimator.ofFloat(viewL1, "alpha", 0f, 1f);
ObjectAnimator animPic2 = ObjectAnimator.ofFloat(viewL2, "alpha", 0f, 1f);
AnimatorSet animSet = new AnimatorSet();
animSet.playSequentially(animPic1, animPic2);
animSet.start();

另一种方法是在 XML 资源文件中定义动画,加载它们并将它们应用到所需的 View 对象。可以在http://blog.stylingandroid.com/simple-animation-part-1/ 找到对android 中这些基本动画的一个很好的介绍。

关于android - 在 android 中为两个 ImageView 设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32739669/

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