- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
简单任务:通过按下按钮,它会将 X 值缩放为 0,当动画完成时,在第二个 View 上启动另一个动画,将 X 从 0 缩放到 1。1 秒后应该播放反向动画,这就是全部。运行下面的代码我得到了动画第一部分的无限动画循环。
使用了 nineoldandroids 库,但我不认为这与原生动画框架有什么不同,至少在果冻 bean 设备上是这样。
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final View mybutton = findViewById(R.id.mybutton);
final View myprogress = findViewById(R.id.myprogress);
mybutton.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
animate(mybutton).scaleX(0).setListener(new AnimatorListenerAdapter()
{
@Override
public void onAnimationEnd(Animator animation)
{
mybutton.setVisibility(View.INVISIBLE);
myprogress.setVisibility(View.VISIBLE);
ViewHelper.setScaleX(myprogress, 0f);
animate(myprogress).scaleX(1).setListener(new AnimatorListenerAdapter()
{
@SuppressWarnings("ConstantConditions")
@Override
public void onAnimationEnd(Animator animation)
{
mybutton.getHandler().postDelayed(new Runnable()
{
@Override
public void run()
{
animate(myprogress).scaleX(0).setListener(new AnimatorListenerAdapter()
{
@Override
public void onAnimationEnd(Animator animation)
{
myprogress.setVisibility(View.INVISIBLE);
mybutton.setVisibility(View.VISIBLE);
ViewHelper.setScaleX(mybutton, 0);
animate(mybutton).scaleX(1);
}
});
}
}, 1000);
}
});
}
});
}
});
}
}
布局很简单:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/mycontainer">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="string text"
android:id="@+id/mybutton"
/>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/mybutton"
android:layout_alignTop="@id/mybutton"
android:layout_alignRight="@id/mybutton"
android:layout_alignBottom="@id/mybutton"
android:visibility="invisible"
android:id="@+id/myprogress"
/>
</RelativeLayout>
</RelativeLayout>
我哪里错了?
最佳答案
疯狂!经过调查发现它的来源:当调用 animate() 方法时,它会创建 ViewPropertyAnimator 并将其保存到 map 中。当您尝试使用 animate() 再次为该 View 设置动画时,它会从 map 中获取已经创建的 viewpropertyanimator 并立即调用 onAnimationStart() 甚至在您设置新的动画参数之前,并且因为在第一个动画上设置了 animationlistener,它被触发了!并启动了第一个动画(第二部分)。这会创建无限循环。
要阻止它,您必须在第二次尝试动画 View 时清除旧的监听器,所以
animate(mybutton).setListener(null).scaleX(1);
停止无限循环。文档应该对此提出警告,绝对!
关于android - 如果动画在 AnimationListener 的 onAnimationEnd 中启动,则动画会进入无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22922218/
我可以在 Kotlin 中使用 lottie 以编程方式启动动画,但我正在努力创建一个 AnimationListener。我该怎么做? 首先,我通过 animation_view.progress
在我的 Android 应用程序中,我想在另一个 View 动画完成后在一个 View 上启动一个动画。所以我使用了AnimationListener,并使用了覆盖方法onAnimationEnd()
我正在使用 Sam 的《24 小时自学 Android 应用程序开发》学习 Android 开发,我遇到了下面的代码。我对 Java 也比较陌生,但我对基础知识非常了解,但我不明白如何将 onAnim
在我的程序中,我有一个 ObjectAnimator,它将 ImageView 从左向右移动。我正在尝试设置一个监听器,它将在 ObjectAnimator 完成运行时执行任务。这是我目前用来尝试完成
我想使用此处指定的 AnimatorListenerAdapter: http://developer.android.com/reference/android/animation/Animator
我为 fragment 翻译应用了一些动画。我可以添加一个动画监听器来检测动画开始/结束事件吗? 谢谢大家。 最佳答案 如果您在自定义 fragment 中覆盖 onCreateAnimation()
我所能看到的是,一个 Listener 来自 Animation,另一个来自 Animator,后者(在 API 11 中添加)是最近添加到安卓API。在什么情况下应该使用哪个,它们可以互换吗? 最佳
我正在尝试使用启动画面来弥补 Google map 加载延迟(对于 Maps v2)。 我想在 FrameLayout 中使用一个 ImageView,它应该在几秒后淡出并且能够覆盖 onAnimat
简单任务:通过按下按钮,它会将 X 值缩放为 0,当动画完成时,在第二个 View 上启动另一个动画,将 X 从 0 缩放到 1。1 秒后应该播放反向动画,这就是全部。运行下面的代码我得到了动画第一部
我有安卓翻译动画。我有一个带有随机生成位置(next1,next2)的 ImageView。我每 3 秒调用一次 void。它生成 View 的新位置,然后制作动画并将 View 移动到目标位置。翻译
我有一个包含 2 个 fragment 的 Activity 。我使用 setCustomAnimations 函数为 fragment 交易添加了自定义动画。现在我想在 fragment 过渡动画效
我是一名优秀的程序员,十分优秀!