Surfaceview animation instance

Source: Internet
Author: User
package game.test;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.SurfaceHolder.Callback;

public class TestSurfaceView extends SurfaceView implements Callback, Runnable {

private SurfaceHolder surfaceHolder;
private int width, height;
private boolean bExit;
private Paint paint;
private Rect rect;

public TestSurfaceView(Context context) {
super(context);
surfaceHolder = this.getHolder();
surfaceHolder.addCallback(this);
rect = new Rect(100, 0, 120, 20);
paint = new Paint();
paint.setAntiAlias(true);
paint.setColor(Color.WHITE);
this.setKeepScreenOn(true);
bExit = false;
}

private void draw() {
Canvas canvas = surfaceHolder.lockCanvas();
canvas.drawColor(Color.BLACK);
rect.top += 10;
if(rect.top > height)
rect.top = 0;
rect.bottom = rect.top + 20;
canvas.drawRect(rect, paint);
surfaceHolder.unlockCanvasAndPost(canvas);
}

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width,
int height) {

}

@Override
public void surfaceCreated(SurfaceHolder holder) {
width = this.getWidth();
height = this.getHeight();
new Thread(this).start();
}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {

}

@Override
public void run() {
while(!bExit) {
draw();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.