- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在指定时间后停止 AnimationDrawable
,但该类没有提供任何直接的方法来执行此操作。我还要求动画暂停 onPause()
回调并恢复 onResume()
回调。我在 StackOverflow 中找不到任何复杂的答案,所以我决定写下自己的答案。我希望它能帮助一些人。
最佳答案
这是我的代码。
/**
* Adds some new features which are not available in the {@link AnimationDrawable} class.
* The main difference is that this class allows setting a timer, which indicates for how
* long is the animation supposed to be rendered.
*/
public class CustomAnimation
{
//==============================================================================================
private AnimationDrawable animation;
//==============================================================================================
private Drawable currentFrame;
//==============================================================================================
private Callable<Void> afterDelay;
//==============================================================================================
private long lastCheckedTime;
private long duration;
//==============================================================================================
private Runnable animationFinished;
private Handler handlerAnimation;
//==============================================================================================
private boolean infinite;
/**
* @param animation the {@link AnimationDrawable} which is about to animate
*/
public CustomAnimation(AnimationDrawable animation)
{
this.animation = animation;
}
/**
* Sets a time limit after which is the animation finished.
* @param duration time in milliseconds. Set to -1 if the animation is infinite.
*/
public void setDuration(long duration)
{
this.duration = duration;
if(duration == -1) infinite = true;
}
/**
* Starts the animation from the first frame, looping if necessary.
*/
public void animate()
{
animation.start();
lastCheckedTime = System.currentTimeMillis();
stopAfterDelay();
}
/**
* Cancels the animation.
*/
public void cancel()
{
animation.stop();
if(handlerAnimation != null) handlerAnimation.removeCallbacks(animationFinished);
}
/**
* Pauses the animation.
*/
public void pause()
{
currentFrame = animation.getCurrent();
duration = getRemainingTime();
animation.setVisible(false, false);
}
/**
* Pauses the animation.
* Call this method only in the onPause() callback.
*/
public void onPause()
{
currentFrame = animation.getCurrent();
duration = getRemainingTime();
cancel();
}
/**
* Resumes the animation.
*/
public void resume()
{
if(!animation.isRunning())
{
lastCheckedTime = System.currentTimeMillis();
animation.setVisible(true, false);
setFrame();
stopAfterDelay();
}
}
/**
* Resumes the animation.
* Call this method only in the onResume() callback.
*/
public void onResume()
{
if(!animation.isRunning())
{
lastCheckedTime = System.currentTimeMillis();
animation.start();
setFrame();
stopAfterDelay();
}
}
/**
* Sets the callable method which is called right after the animation finishes.
* @param afterDelay the callable method which returns nothing
*/
public void setCallableAfterDelay(Callable<Void> afterDelay)
{
this.afterDelay = afterDelay;
}
/**
* @return remaining time in milliseconds until the animation is supposed to be finished
*/
public long getRemainingTime()
{
return duration - (System.currentTimeMillis() - lastCheckedTime);
}
private void stopAfterDelay()
{
if(infinite) return;
animationFinished = new Runnable()
{
@Override
public void run()
{
animation.stop();
try { if(afterDelay != null) afterDelay.call(); }
catch(Exception e) { e.printStackTrace(); }
}
};
handlerAnimation = new Handler();
handlerAnimation.postDelayed(animationFinished, duration);
}
private void setFrame()
{
for(int i = 0; i < animation.getNumberOfFrames(); i++)
{
Drawable checkFrame = animation.getFrame(i);
if(checkFrame == currentFrame) break;
animation.run();
}
}
}
启动:
CustomAnimation animation = new CustomAnimation((AnimationDrawable) img.getBackground());
animation.setDuration(5000);
animation.setCallableAfterDelay(new Callable<Void>()
{
@Override
public Void call()
{
img.setBackgroundResource(R.drawable.imgFinished);
return null;
}
});
animation.animate();
onPause()
回调:
@Override
public void onPause()
{
super.onPause();
animation.onPause();
}
onResume()
回调:
@Override
public void onResume()
{
super.onResume();
animation.onResume();
}
关于java - Android:指定时间后停止AnimationDrawable,恢复onResume(),暂停onPause(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56518960/
假设我有 3 个 Fragment,BaseFragment,以及第一个 fragment 和第二个 fragment 。 我已经实现了 BaseFragment 的 onResume() 并编写了一
这是我的第一个应用程序,所以这个问题/答案可能非常基本。我目前有 onPause(); ,当玩家离开屏幕时停止播放音乐。我尝试做类似的事情,但使用 onResume,以便再次播放音乐(backgrou
如何重载onResume()以正确的方式工作?我想从 activity 返回到 MainActivity ,我希望在其中具有与应用程序启动后相同的状态。我想使用 recreate() 但它循环了或者类
出于某种原因,当我在代码中声明 onResume() 时,它会无缘无故地让我的程序崩溃,甚至无法打开。 这是我的 onResume() 代码: public void onResume() {
我遇到了一个棘手的问题。我有两个标签页主机 ...标签页主机 A 和标签页主机 B。每个选项卡主机都有三个选项卡(我们称它们为 A1、B1、A2、B2 等)。 选项卡主机 B 从 Activity A
我的应用程序有一个问题,如果我返回到一个 Activity ,我会收到一条错误消息,指出数据库已关闭: ERROR/AndroidRuntime(3566): Caused by: java.lang
在我的 android 应用程序中,我有一个问题已经 3 天无法解决了。我阅读了很多帖子和答案,但仍然找不到我的解决方案。 我的问题是当我按下主页按钮并在很长时间后返回应用程序时它崩溃了(NullPo
我如何实现一个无限滚动到 onResume(),目前是 onCreateView,我实现了一个无限滚动,它工作得很好,但是当涉及到 onResume() 时,它在另一个显示空白数据时不起作用。 这是o
我在我的 Android 应用程序中使用谷歌地图。一切都很好,但是当我没有启用 GPS 服务时,我会显示一条消息来启用。当我启用 GPS 并在我的 Fragment der map 中返回时,仅当我按
我一直在搜索这个,但不知道会发生什么...... 当我回到上一个 Activity 时,我的组件已正确初始化,但它们上面有一个新组件... 我的意思是,在 Debug模式下,我遵循并执行了 onRes
我读过一些与我的问题相似的帖子,最相似的问题在这里:Strange onPause(), onResume() behaviour in fragments 我正在使用 FragmentPagerAd
我已经阅读了关于 onResume() 和 onStart() 的文档,但我仍然不明白的一件事是 onResume() 在没有 onStart() 之前被调用? 最佳答案 请引用Android Act
我正在尝试制作一个简单的记事本应用程序,我想在“新建笔记” Activity 完成且主屏幕恢复时刷新笔记。但是,当我尝试使用此代码打开应用程序时,我会强制关闭。如果我删除 OnResume 东西,它不
这个问题在这里已经有了答案: Android: Under what circumstances would a Dialog appearing cause onPause() to be cal
我有一个问题。在为预览初始化相机并将另一个应用程序聚焦后,然后返回我的应用程序:预览显示为黑色。如果我继续拍照,它会拍摄我正常指向相机的位置的照片。 我在 OnResume() 覆盖上做错了什么吗?相
我正在使用列表适配器来显示不同的商店,当有人选择商店时,它会将他们带到一个新的 Activity 中,他们可以在该 Activity 中将商店添加到该屏幕上的收藏夹。 有一个调用 finish();
我有一个 Intent,它通过一个长的 Extra 从我的数据库中获取信息。它还通过 String Extra 设置 Activity 的标题。 现在,当我第一次启动 Activity 时,一切都完美
所以我有我的主要 Activity ,当您按下按钮时,它会启动 Activity 2。启动 activity2 后,我按下主页按钮,它将在 activity2 触发 onPause,然后 androi
我正在编写一个购物车应用,其中我允许用户选择要购买的商品并将他们需要的商品添加到购物车,为此我给出了两种不同的标签, 第一个标签,浏览产品 第二个标签,浏览购物车中的商品 [用户添加] 这里我遇到了一
我有问题。当我第一次启动我的 android 应用程序时,在主要 Activity 中 onCreate 和 onResume 都会被调用。但我只想被称为 onCreate。 我能做什么? 最佳答案
我是一名优秀的程序员,十分优秀!