SurfaceView的雙緩沖使用Android_第1頁
SurfaceView的雙緩沖使用Android_第2頁
SurfaceView的雙緩沖使用Android_第3頁
SurfaceView的雙緩沖使用Android_第4頁
SurfaceView的雙緩沖使用Android_第5頁
已閱讀5頁,還剩5頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

精品文檔-下載后可編輯SurfaceView的雙緩沖使用AndroidAndroid一詞的本義指“機(jī)器人”,同時(shí)也是Google于2022年11月5日宣布的基于Linux平臺(tái)的開源手機(jī)操作系統(tǒng)的名稱,該平臺(tái)由操作系統(tǒng)、中間件、用戶界面和應(yīng)用軟件組成,號(hào)稱是為移動(dòng)終端打造的真正開放和完整的移動(dòng)軟件。目前,版本為Android2.4Gingerbread和Android3.0Honeycomb。

Android是基于Linux開放性內(nèi)核的操作系統(tǒng),是Google公司在2022年11月5日公布的手機(jī)操作系統(tǒng)。早期由原名為"Android"的公司開發(fā),谷歌在2022年收購(gòu)"Android.Inc"后,繼續(xù)進(jìn)行對(duì)Android系統(tǒng)開發(fā)運(yùn)營(yíng),它采用了軟件堆層的架構(gòu),主要分為三部分。底層Linux內(nèi)核只提供基本功能,其他的應(yīng)用軟件則由各公司自行開發(fā),部分程序以Java編寫。

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

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

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

main.xml的源碼:

viewplaincopytoclipboardprint?

android:orientation="vertical"

android:layout_width="wrap_content"android:layout_height="wrap_content"

android:layout_height="wrap_content"android:text="單個(gè)獨(dú)立線程"android:layout_height="wrap_content"android:text="兩個(gè)獨(dú)立線程"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_height="wrap_content"android:text="單個(gè)獨(dú)立線程"android:layout_height="wrap_content"android:text="兩個(gè)獨(dú)立線程"

android:layout_width="fill_parent"android:layout_height="fill_parent"

本文程序的源碼:

viewplaincopytoclipboardprint?

packagecom.testSurfaceView;

importjava.lang.reflect.Field;

importjava.util.ArrayList;

importandroid.app.Activity;

importandroid.graphics.Bitmap;

importandroid.graphics.BitmapFactory;

importandroid.graphics.Canvas;

importandroid.graphics.Paint;

importandroid.graphics.Rect;

importandroid.os.Bundle;

importandroid.util.Log;

importandroid.view.SurfaceHolder;

importandroid.view.SurfaceView;

importandroid.view.View;

importandroid.widget.Button;

publicclasstestSurfaceViewextendsActivity{

/**Calledwhentheactivityisfirstcreated.*/

ButtonbtnSingleThread,btnDoubleThread;

SurfaceViewsfv;

SurfaceHoldersfh;

ArrayListimgList=newArrayList();

intimgWidth,imgHeight;

Bitmapbitmap;//獨(dú)立線程讀取,獨(dú)立線程繪圖

@Override

publicvoidonCreate(BundlesavedInstanceState){

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

btnSingleThread=(Button)this.findViewById(R.id.Button01);

btnDoubleThread=(Button)this.findViewById(R.id.Button02);

btnSingleThread.setOnClickListener(newClickEvent());

btnDoubleThread.setOnClickListener(newClickEvent());

sfv=(SurfaceView)this.findViewById(R.id.SurfaceView01);

sfh=sfv.getHolder();

sfh.addCallback(newMyCallBack());//自動(dòng)運(yùn)行surfaceCreated以及surfaceChanged

}

classClickEventimplementsView.OnClickListener{

@Override

publicvoidonClick(Viewv){

if(v==btnSingleThread){

newLoad_DrawImage(0,0)。start();//開一條線程讀取并繪圖

}elseif(v==btnDoubleThread){

newLoadImage()。start();//開一條線程讀取

newDrawImage(imgWidth+10,0)。start();//開一條線程繪圖

}

}

}

classMyCallBackimplementsSurfaceHolder.Callback{

@Override

publicvoidsurfaceChanged(SurfaceHolderholder,intformat,intwidth,

intheight){

Log.i("Surface:","Change");

}

@Override

publicvoidsurfaceCreated(SurfaceHolderholder){

Log.i("Surface:","Create");

//用反射機(jī)制來獲取資源中的圖片ID和尺寸

Field[]fields=R.drawable.class.getDeclaredFields();

for(Fieldfield:fields){

if(!"icon".equals(field.getName()))//除了icon之外的圖片

{

intindex=0;

try{

index=field.getInt(R.drawable.class);

}catch(IllegalArgumentExceptione){

//TODOAuto-generatedcatchblock

e.printStackTrace();

}catch(IllegalAccessExceptione){

//TODOAuto-generatedcatchblock

e.printStackTrace();

}

//保存圖片ID

imgList.add(index);

}

}

//取得圖像大小

BitmapbmImg=BitmapFactory.decodeResource(getResources(),

imgList.get(0));

imgWidth=bmImg.getWidth();

imgHeight=bmImg.getHeight();

}

@Override

publicvoidsurfaceDestroyed(SurfaceHolderholder){

Log.i("Surface:","Destroy");

}

}

/*

*讀取并顯示圖片的線程

*/

classLoad_DrawImageextendsThread{

intx,y;

intimgIndex=0;

publicLoad_DrawImage(intx,inty){

this.x=x;

this.y=y;

}

publicvoidrun(){

while(true){

Canvasc=sfh.lockCanvas(newRect(this.x,this.y,this.x

+imgWidth,this.y+imgHeight));

BitmapbmImg=BitmapFactory.decodeResource(getResources(),

imgList.get(imgIndex));

c.drawBitmap(bmImg,this.x,this.y,newPaint());

imgIndex++;

if(imgIndex==imgList.size())

imgIndex=0;

sfh.unlockCanvasAndPost(c);//更新屏幕顯示內(nèi)容

}

}

};

/*

*只負(fù)責(zé)繪圖的線程

*/

classDrawImageextendsThread{

intx,y;

publicDrawImage(intx,inty){

this.x=x;

this.y=y;

}

publicvoidrun(){

while(true){

if(bitmap!=null){//

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論