问题标签 [animationdrawable]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
10293 浏览

android - 如何使用 AnimationDrawable 暂停帧动画?

如何使用 AnimationDrawable 暂停帧动画?

0 投票
1 回答
1652 浏览

android - 在android中可以用声音绘制动画?

我在课堂上使用动画可绘制功能。

我需要在加载每一帧动画时生成声音。无论是否可能。我将以下代码用于动画:

我的爪哇:

我不知道在哪里产生声音。

任何人提出一些想法。

谢谢。

0 投票
1 回答
6817 浏览

android - android中的clearAnimation()和stop()有什么区别?

当我完成我的活动时,我应该使用clearAnimation()stop()放在任何剩余的AnimationDrawable物体上吗?

0 投票
2 回答
3021 浏览

android - AnimationDrawable 在 getBackground() 上为空

我正在尝试使用以下代码为示例程序设置动画:

XML 文件是:

我遇到的问题是 animatedImage.getBackground() 返回 null。

将不胜感激你的提示:-)

谢谢,西蒙

0 投票
1 回答
1558 浏览

android - Free memory from AnimationDrawable

I'm using animationdrawables in many activities of my app. This is the code to inicializate them:

Then i call: imgBall.post(new StartAnimation());

that call a runnable:

The problem is i use many animations that are the uses the same xml (frame by frame). I have to call this method in many activities with the same animation. Finally i get a outofmemoryerror. I'm trying to free memory between screens:

The problem is that when i try to use a resourde again y get other error: "Trying to use recycled bitmap"

Anyone know other way of free memory?

0 投票
1 回答
815 浏览

android - 在特定帧启动 AnimationDrawable?

我有一个 AnimationDrawable 像这样:

并开始这样:

我想知道是否可以直接开始,比如说第二帧。有没有办法做到这一点?我需要它来进行游戏,我希望能够在我按下暂停按钮调用时恢复确切的帧:

现在它从“暂停模式”恢复后再次开始整个动画。

0 投票
1 回答
1074 浏览

android - AnimationDrawable 创建一个无限循环

在此处输入图像描述在此处输入图像描述

我正在使用 AnimationDrawable 创建逐帧效果,我想在图像更改时,圆点一起更改,我的代码创建一个无限循环,如果我下车,While(mframeAnimation.isRunning())那么它只检查一次值并停止。

问题:

那么我应该怎么做才能创建一个无限检查,一个监听器或类似的东西来改变图像时的圆圈?

0 投票
3 回答
1489 浏览

android - Android:另一个“错误膨胀类

我在我的活动“GameActivity”中使用了很多图像(我做 imageView.setImageDrawable(AnimationDrawable) 其中 AnimationDrawable 有超过 16 个频率,我在第二个活动“ShareActivity”中不使用的图像

然而出现了这个错误

这是我所有的 XML

我的错误是因为动画可绘制吗?我怎样才能“清除”它的内存或回收它?

编辑

我的问题来自

知道我应该清除什么,因为我已经回收了其他位图

0 投票
6 回答
30692 浏览

android - 如何在 android 中为 .gif 图像设置动画?

这是xml的代码:

这里的 minepic 是一个 gif 动画图像,但在运行应用程序后它只显示一个静态图像。

有没有关于如何在 android 应用程序中为 .gif 图像设置动画的解决方案?

0 投票
1 回答
1141 浏览

android - 如何优化帧动画?

我想做 30 帧的帧动画。我的代码是:

在这段代码中,我包含了System.gc();. 这会帮助我优化内存相关问题吗?或者它仍然可以给出与内存相关的问题。这是否意味着帧动画时内存中存在的 30 张图像将被销毁。

有没有其他方法可以优化这个?请提出建议。

提前致谢。