《電子技術應用》
您所在的位置:首頁 > 微波|射頻 > 設計應用 > Android應用之SurfaceView的雙緩沖使用
Android應用之SurfaceView的雙緩沖使用
摘要: 這次介紹SurfaceView的雙緩沖使用。雙緩沖是為了防止動畫閃爍而實現的一種多線程應用,基于SurfaceView的雙緩沖實現很簡單,開一條線程并在其中繪圖即可。
Abstract:
Key words :

這次介紹SurfaceView雙緩沖使用。雙緩沖是為了防止動畫閃爍而實現的一種多線程應用,基于SurfaceView的雙緩沖實現很簡單,開一條線程并在其中繪圖即可。本文介紹基于SurfaceView的雙緩沖實現,以及介紹類似的更高效的實現方法。

        本文程序運行截圖如下,左邊是開單個線程讀取并繪圖,右邊是開兩個線程,一個專門讀取圖片,一個專門繪圖:

對比一下,右邊動畫的幀速明顯比左邊的快,左右兩者都沒使用Thread.sleep()。為什么要開兩個線程一個讀一個畫,而不去開兩個線程像左邊那樣都“邊讀邊畫”呢?因為SurfaceView每次繪圖都會鎖定Canvas,也就是說同一片區域這次沒畫完下次就不能畫,因此要提高雙緩沖的效率,就得開一條線程專門畫圖,開另外一條線程做預處理的工作。

main.xml的源碼:

view plaincopy to clipboardprint?
 
android="http://schemas.android.com/apk/res/android" />    android:layout_width="fill_parent" android:layout_height="fill_parent" 
    android:orientation="vertical"> 
 
            android:layout_width="wrap_content" android:layout_height="wrap_content"> 
        
        
     
            android:layout_width="fill_parent" android:layout_height="fill_parent"> 
 

 android:layout_width="fill_parent" android:layout_height="fill_parent"
 android:orientation="vertical">

   android:layout_width="wrap_content" android:layout_height="wrap_content">
  
  
 
   android:layout_width="fill_parent" android:layout_height="fill_parent">

 

本文程序的源碼:

 view plaincopy to clipboardprint?
package com.testSurfaceView;  
 
import java.lang.reflect.Field;  
import java.util.ArrayList;  
import android.app.Activity;  
import android.graphics.Bitmap;  
import android.graphics.BitmapFactory;  
import android.graphics.Canvas;  
import android.graphics.Paint;  
import android.graphics.Rect;  
import android.os.Bundle;  
import android.util.Log;  
import android.view.SurfaceHolder;  
import android.view.SurfaceView;  
import android.view.View;  
import android.widget.Button;  
 
public class testSurfaceView extends Activity {  
    /** Called when the activity is first created. */ 
    Button btnSingleThread, btnDoubleThread;  
    SurfaceView sfv;  
    SurfaceHolder sfh;  
    ArrayList imgList = new ArrayList();  
    int imgWidth, imgHeight;  
    Bitmap bitmap;//獨立線程讀取,獨立線程繪圖  
 
    @Override 
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
 
        btnSingleThread = (Button) this.findViewById(R.id.Button01);  
        btnDoubleThread = (Button) this.findViewById(R.id.Button02);  
        btnSingleThread.setOnClickListener(new ClickEvent());  
        btnDoubleThread.setOnClickListener(new ClickEvent());  
        sfv = (SurfaceView) this.findViewById(R.id.SurfaceView01);  
        sfh = sfv.getHolder();  
        sfh.addCallback(new MyCallBack());// 自動運行surfaceCreated以及surfaceChanged  
    }  
 
    class ClickEvent implements View.OnClickListener {  
 
        @Override 
        public void onClick(View v) {  
 
            if (v == btnSingleThread) {  
                new Load_DrawImage(0, 0).start();//開一條線程讀取并繪圖  
            } else if (v == btnDoubleThread) {  
                new LoadImage().start();//開一條線程讀取  
                new DrawImage(imgWidth + 10, 0).start();//開一條線程繪圖  
            }  
 
        }  
 
    }  
 
    class MyCallBack implements SurfaceHolder.Callback {  
 
        @Override 
        public void surfaceChanged(SurfaceHolder holder, int format, int width,  
                int height) {  
            Log.i("Surface:", "Change");  
 
        }  
 
        @Override 
        public void surfaceCreated(SurfaceHolder holder) {  
            Log.i("Surface:", "Create");  
 
            // 用反射機制來獲取資源中的圖片ID和尺寸  
            Field[] fields = R.drawable.class.getDeclaredFields();  
            for (Field field : fields) {  
                if (!"icon".equals(field.getName()))// 除了icon之外的圖片  
                {  
                    int index = 0;  
                    try {  
                        index = field.getInt(R.drawable.class);  
                    } catch (IllegalArgumentException e) {  
                        // TODO Auto-generated catch block  
                        e.printStackTrace();  
                    } catch (IllegalAccessException e) {  
                        // TODO Auto-generated catch block  
                        e.printStackTrace();  
                    }  
                    // 保存圖片ID  
                    imgList.add(index);  
                }  
            }  
            // 取得圖像大小  
            Bitmap bmImg = BitmapFactory.decodeResource(getResources(),  
                    imgList.get(0));  
            imgWidth = bmImg.getWidth();  
            imgHeight = bmImg.getHeight();  
        }  
 
        @Override 
        public void surfaceDestroyed(SurfaceHolder holder) {  
            Log.i("Surface:", "Destroy");  
 
        }  
 
    }  
 
    /* 
     * 讀取并顯示圖片的線程 
     */ 
    class Load_DrawImage extends Thread {  
        int x, y;  
        int imgIndex = 0;  
 
        public Load_DrawImage(int x, int y) {  
            this.x = x;  
            this.y = y;  
        }  
 
        public void run() {  
            while (true) {  
                Canvas c = sfh.lockCanvas(new Rect(this.x, this.y, this.x  
                        + imgWidth, this.y + imgHeight));  
                Bitmap bmImg = BitmapFactory.decodeResource(getResources(),  
                        imgList.get(imgIndex));  
                c.drawBitmap(bmImg, this.x, this.y, new Paint());  
                imgIndex++;  
                if (imgIndex == imgList.size())  
                    imgIndex = 0;  
 
                sfh.unlockCanvasAndPost(c);// 更新屏幕顯示內容  
            }  
        }  
    };  
 
    /* 
     * 只負責繪圖的線程 
     */ 
    class DrawImage extends Thread {  
        int x, y;  
 
        public DrawImage(int x, int y) {  
            this.x = x;  
            this.y = y;  
        }  
 
        public void run() {  
            while (true) {  
                if (bitmap != null) {//如果圖像有效  
                    Canvas c = sfh.lockCanvas(new Rect(this.x, this.y, this.x  
                            + imgWidth, this.y + imgHeight));  
 
                    c.drawBitmap(bitmap, this.x, this.y, new Paint());  
 
                    sfh.unlockCanvasAndPost(c);// 更新屏幕顯示內容  
                }  
            }  
        }  
    };  
 
    /* 
     * 只負責讀取圖片的線程 
     */ 
    class LoadImage extends Thread {  
        int imgIndex = 0;  
 
        public void run() {  
            while (true) {  
                bitmap = BitmapFactory.decodeResource(getResources(),  
                        imgList.get(imgIndex));  
                imgIndex++;  
                if (imgIndex == imgList.size())//如果到盡頭則重新讀取  
                    imgIndex = 0;  
            }  
        }  
    };  

 

此內容為AET網站原創,未經授權禁止轉載。
主站蜘蛛池模板: 女人张开腿让男人桶个爽| 久久亚洲精品人成综合网| 九九热精品免费| 久久91精品国产99久久yfo| www.av毛片| 女人隐私秘视频黄www免费| 高h全肉动漫在线观看最新| 精品熟女碰碰人人a久久| 欧美日韩国产成人在线观看| 日本按摩xxxxx高清| 好大好爽快点视频| 国产无遮挡又黄又爽免费视频| 四虎免费影院ww4164h| 亚洲日韩中文字幕无码一区| 久久久无码一区二区三区| 99在线精品免费视频| 韩国免费A级作爱片无码| 特级aaaaaaaaa毛片免费视频| 日韩特黄特色大片免费视频| 好大好硬好爽免费视频| 国产情侣真实露脸在线| 免费人成激情视频在线观看冫| 乳揉みま痴汉电车动漫中文字幕 | 亚洲欧美国产va在线播放| 久久夜色精品国产噜噜麻豆| 一级一级一级毛片| 日本黄网站动漫视频免费| 精品久久欧美熟妇WWW| 春色www在线视频观看| 大象视频在线免费观看| 国产乱码1卡二卡3卡四卡| 亚洲毛片无码专区亚洲乱| 中国speakingathome宾馆学生| 37大但人文艺术a级| 高岭家の二轮花未增删| 色五月婷婷成人网| 激情小说亚洲图片| 最近2019中文免费字幕| 天天干天天色综合| 男人把大ji巴放进男人免费视频| 久久久久久久91精品免费观看|