我有一个基本对象响应屏幕上的flings。我的问题我不知道如何动画我在屏幕上投掷的图像。基本上我有一个足球的静态图像,我想要在屏幕上投掷动画。这是我的代码片段,我将图像定义为fling:
public PlayAreaView(Context context) {
super(context);
translate = new Matrix();
gestures = new GestureDetector(FGKick.this,
new GestureListener(this));
football = BitmapFactory.decodeResource(getResources(),
R.drawable.fgball);
}
答案 0 :(得分:1)
对于初学者,您可能希望在API中查看Tween或Frame Animation。
http://developer.android.com/guide/topics/graphics/2d-graphics.html
复制岛http://code.google.com/p/replicaisland/也许会有所帮助。这是一个很好的资源(有源),可以使用XML来定义动画来制作各种动画。