`
昔雪似花
  • 浏览: 204196 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

图片在view中调用Animation动画移动

 
阅读更多
java code

package com.test.AnimationDemo;
import java.io.InputStream;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.drawable.BitmapDrawable;
import android.os.AsyncTask;
import android.os.Handler;
import android.os.Message;
import android.os.SystemClock;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.Animation;
import android.view.animation.Transformation;
import android.view.animation.TranslateAnimation;

/**
* 2010-09-XX
*
* @author Chunter
*
*/
public class DemonView extends View {

    InputStream inputSteam = this.getContext().getResources()
            .openRawResource(R.drawable.icon);
    BitmapDrawable bmpDraw = new BitmapDrawable(inputSteam);

    float startX, startY, aimX, aimY;
    int msgTp = 1;

    public DemonView(Context context, AttributeSet attrs) {
        super(context, attrs);
        new T1().execute(new Object());
    }

    Animation mCurrentAnimation = null;
    Transformation mTransformation = new Transformation();

    Handler myHandler = new Handler() {
        public synchronized void handleMessage(Message msg) {
            switch (msg.what) {
            case 1:
                initAndStartAmination(0, 0, 200, 200, bmpDraw); //ok
                ;
                break;
            case 2:
                initAndStartAmination(100.0f, 100.0f, 0, 0, bmpDraw); //这里就会有问题,实际没有移动到(0,0)
            }
            super.handleMessage(msg);
        }
    };

    public synchronized void onDraw(Canvas canvas) {
        // this.initalAmination(int startX,int start Y)
        this.makeBallMove(canvas, this.bmpDraw);
    }

    public void initAndStartAmination(float startX, float startY, float aimX,
            float aimY, BitmapDrawable bmpDraw) {
        Animation anim = new TranslateAnimation(startX, aimX, startY
                + bmpDraw.getBitmap().getHeight(), aimY
                + bmpDraw.getBitmap().getHeight());

        this.startX = startX;
        this.startY = startY;
        this.aimX = aimX;
        this.aimY = aimY;
        this.mTransformation = new Transformation();

        anim.setDuration(1000); // 1s
        anim.setInterpolator(new AccelerateInterpolator(1.0f));
        anim.setFillAfter(true);
        startAnimation(anim);
    }

    public void startAnimation(Animation animation) {
        // animation.setStartTime(animation.);
        setAnimation(animation);
        invalidate();
    }

    public void setAnimation(Animation animation) {
        mCurrentAnimation = animation;
        if (animation != null) {
            animation.reset();
        }
    }

    public void makeBallMove(Canvas canvas, BitmapDrawable bmpDraw) {

        long curTime = SystemClock.uptimeMillis();
        if (mCurrentAnimation == null) {

            canvas.drawBitmap(bmpDraw.getBitmap(), 0, 0, null);
        } else {
            if (!mCurrentAnimation.isInitialized()) // initialize animation

                mCurrentAnimation.initialize(0, 0, 0, 0);

            boolean more = mCurrentAnimation.getTransformation(curTime,
                    mTransformation);

            if (more) {

                Matrix m = canvas.getMatrix();

                canvas.setMatrix(mTransformation.getMatrix());

                canvas.drawBitmap(bmpDraw.getBitmap(), startX, startY, null);

                canvas.setMatrix(m);

                this.invalidate();

            } else {

                // canvas.drawBitmap(bmpDraw.getBitmap(), aimX, aimY, null);
                this.mCurrentAnimation = null;
                msgTp = (msgTp + 1) % 2 == 0 ? 2 : 1;

            }

        }

    }

    private class T1 extends AsyncTask {
        Object lock = new Object();

        @Override
        protected Object doInBackground(Object... arg0) {
            while (true) {
                try {
                    Thread.sleep(1999);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                if (mCurrentAnimation == null) {
                    messageSend(msgTp);
                }

            }

        }

        protected void onPostExecute(Object obj) {
            // do Nothing
        }
    }

    /**
     * notify UI Thread to refresh the ChessBoard
     *
     * @param i
     */
    private synchronized void messageSend(int i) {
        Message message = new Message();
        message.what = i;
        myHandler.sendMessage(message);
    }

}


xml code

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white">

    <com.test.AnimationDemo.DemonView android:id="@+id/animotion_test" android:layout_width="match_parent"
        android:layout_height="match_parent" tileSize="24"/>
   
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView
            android:id="@+id/text"
            android:visibility="visible"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:textColor="#ff0000"
            android:textSize="24sp"
            />
    </RelativeLayout>

</FrameLayout>
分享到:
评论
1 楼 爱学习的傻瓜 2012-03-06  
我看了你的一些博客文章,怎么都没有加注释啊

相关推荐

    Android animation图片移动效果.zip

    本项目“Android animation图片移动效果.zip”提供了一个具体的示例,展示如何在Android中实现图片的移动动画效果。这个项目源码是用Java编写的,适合初学者和有经验的开发者参考学习。 首先,我们需要了解Android...

    Android源码——View中添加Animation.zip

    这个压缩包“Android源码——View中添加Animation.zip”包含了关于在Android的View中如何添加动画的详细资源,包括一个图片示例(1-1209122202530-L.png)、源码说明文本(源码说明.txt)、以及一个链接到更多源码的...

    TranslateAnimation实现View的动态移动

    如果希望View停留在动画结束的位置,可以调用`setFillAfter(true)`: ```java translateAnim.setFillAfter(true); ``` 5. **调整View位置**: 虽然`setFillAfter`可以让View看起来停留在动画结束位置,但它并...

    博客《Android动画之二:View Animation》附带源码 ViewAnimationDemo

    本篇将详细探讨Android中的View Animation,它是Android早期提供的动画机制,适用于简单平滑的视图变换。 **一、View Animation基础** 1. **Animation类**:所有动画的基类,提供了动画的基本控制,如设置持续时间...

    android动画之帧动画(drawable animation)和补间动画(view animation)

    在代码中,我们需要实例化`AnimationDrawable`,将其设置为某个View的背景,然后调用`start()`方法启动动画。 ```java ImageView imageView = findViewById(R.id.imageView); AnimationDrawable animation = ...

    01_TweenAnimation变化动画Demo代码下载

    TweenAnimation在Android开发中是一种常见的动画技术,用于创建平滑的过渡效果,它可以改变View对象的属性,如位置、大小、透明度等,为用户界面增添动态美感。本Demo代码下载提供了关于TweenAnimation的实例,帮助...

    Android View中添加Animation.zip

    `Android View中添加Animation.zip`这个资源包显然包含了关于如何在Android视图中应用动画的教程或示例代码。接下来,我们将深入探讨Android视图动画的相关知识点。 1. **动画类型**: Android提供了两种主要的...

    Android代码-animation图片移动效果.zip

    使用`ObjectAnimator`,可以直接操作对象的属性,如改变ImageView的`translationX`和`translationY`属性,实现图片在屏幕上的移动。而`ValueAnimator`则提供了一个更底层的控制,允许开发者手动更新动画值。 4. **...

    安卓Animation实现APP引导用户点击动画

    在本示例中,我们主要关注的是View Animation,它是早期版本(API Level 8及以下)中的动画机制,主要通过改变View的位置、大小、透明度等属性来实现动画效果。 二、Animation的种类 1. TranslateAnimation:平移...

    Android View中添加Animation-IT计算机-毕业设计.zip

    3. 应用动画:调用View的startAnimation(Animation animation)方法将动画应用到View上。 四、动画组合与监听 1. AnimationSet:通过将多个动画添加到AnimationSet,可以实现连续或并行播放的动画效果。 2. 动画监听...

    Android 属性动画左右移动

    在Android开发中,属性动画(Property Animation)是Android 3.0(API Level 11)引入的一个强大功能,用于创建丰富的视觉效果和用户交互。本教程将详细讲解如何使用属性动画实现对象在屏幕上的左右移动效果。 首先...

    继承Animation自定义动画

    在Android中,`Animation`类是所有动画的基础,它定义了动画的基本行为,如持续时间、重复次数、填充模式等。`Animation`有两种主要类型:补间动画(Tween Animation)和帧动画(Frame Animation)。补间动画主要...

    iOS view的简单动画

    - **移动动画(Translation)**:通过改变View的中心点或frame,可以实现View在屏幕上的平移。 - **旋转动画(Rotation)**:通过修改transform属性中的rotation部分,可以让View进行旋转。 - **缩放动画(Scale...

    frameAnimation动画

    标题"frameAnimation动画"所指的就是这种技术在Android中的应用。描述中提到的"简单的演示日食界面哈"则可能是指使用帧动画来模拟日食的动态过程,通过一组描绘日食不同阶段的图片序列,形成一个连贯的动画效果。 ...

    小程序鲜花订购,animation动画卡片效果源码

    在“鲜花订购”小程序中,`animation`模块是关键,它是微信小程序提供的一种动画处理工具。通过`wx.createAnimation()`方法创建一个动画实例,然后设置动画的各种属性,如位移、旋转、缩放、透明度等。例如,可以...

    Android frame by frame animation动画显示

    在Android开发中,帧动画(Frame-by-Frame Animation)是一种常用的技术,用于创建连续的图像序列,模拟视频或gif动图的效果。这种动画通常适用于简单的移动、旋转或渐变效果,比如按钮按下反馈、加载指示器等。接...

    android中Animation的简单应用实例

    在Android开发中,动画(Animation)是提升用户体验和界面交互性的重要工具。本文将深入探讨Android中的`Animation`类及其简单应用实例,旨在帮助初学者理解如何使用各种动画方法。 一、Animation概述 Android提供...

    Android动画效果--渐变动画

    在Java代码中,我们可以创建动画对象,设置属性,然后调用`start()`方法启动动画。例如,创建一个Alpha动画: ```java AlphaAnimation alphaAnim = new AlphaAnimation(1.0f, 0.0f); alphaAnim.setDuration(2000...

    微信小程序-动画示例-Animation-Sample.rar

    在这个"微信小程序-动画示例-Animation-Sample.rar"压缩包中,我们重点关注的是微信小程序中的动画实现,这是一个非常重要的部分,因为它能够提升用户体验,增加应用的趣味性和交互性。 在微信小程序中,动画主要...

    Android 属性动画使控件沿贝塞尔曲线移动

    在项目"Android 属性动画使控件沿贝塞尔曲线移动"中,BZDemo可能包含了一个自定义的View或Animation类,用于处理动画逻辑。这个类会根据输入的控制点、动画时长和幅度计算出每个帧的位置,然后通过ObjectAnimator或...

Global site tag (gtag.js) - Google Analytics