0

我制作了一个应用程序,其中一个盘子上有一个苹果。我想把这个苹果放在盘子上,然后放置后让这个苹果跳起来,直到用户不能点击它。我不知道该怎么做。

关于在盘子上上下移动苹果的任何帮助。我可以完成这项任务的任何课程。

4

2 回答 2

0

使用2D 图形OpenGL来获得这种效果,2D 图形将很容易实现,但如果您想提高性能,请使用 openGL。这可以与您的应用程序逻辑相结合。

于 2013-04-17T10:59:20.090 回答
0

示例:保存在 res/anim/rocket.xml 的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false">
    <item android:drawable="@drawable/rocket_thrust1" android:duration="200" />
    <item android:drawable="@drawable/rocket_thrust2" android:duration="200" />
    <item android:drawable="@drawable/rocket_thrust3" android:duration="200" />
</animation-list>

此应用程序代码会将动画设置为 View 的背景,然后播放动画:

ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image);
rocketImage.setBackgroundResource(R.drawable.rocket_thrust);

rocketAnimation = (AnimationDrawable) rocketImage.getBackground();
rocketAnimation.start();

在这里,您可以使用一组可绘制对象并开始动画,一旦单击视图,您就可以通过调用RocketAnimation.stop() 来停止动画;

于 2013-04-17T11:00:01.020 回答