版權(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 企業(yè)內(nèi)部培訓(xùn)師招聘合同書
- 水泥行業(yè)托盤租賃協(xié)議
- 2024年軟件開發(fā)合作合同3篇
- 影視基地建設(shè)管理策略
- 汽車維修質(zhì)量異常處理要點(diǎn)
- 臨時(shí)演員加入企業(yè)年會(huì)合同
- 網(wǎng)絡(luò)教育副總經(jīng)理招聘合同
- 停車場(chǎng)導(dǎo)向牌安裝協(xié)議
- 城市綠化施工總承包合同
- 泥水匠勞動(dòng)合同模板
- 委托無人機(jī)服務(wù)協(xié)議
- 2024年中考語文名著閱讀《儒林外史》內(nèi)容簡(jiǎn)介、主要人物形象及相關(guān)練習(xí)
- 借助力學(xué)原理設(shè)計(jì)簡(jiǎn)易杠桿裝置
- 2024年執(zhí)業(yè)醫(yī)師考試-中醫(yī)執(zhí)業(yè)助理醫(yī)師筆試歷年真題薈萃含答案
- 2023年甲型H1N1流感防控考核試題及答案
- T-ZJASE 024-2023 呼吸閥定期校驗(yàn)規(guī)則
- 流浪乞討人員救助工作總結(jié)
- 新生兒疼痛評(píng)估與管理課件
- 云南省昆明市盤龍區(qū)2023-2024學(xué)年高二上學(xué)期期末質(zhì)量檢測(cè)數(shù)學(xué)試題【含答案解析】
- 腎上腺皮質(zhì)功能減退通用課件
- 《安徒生童話》試題及答案
評(píng)論
0/150
提交評(píng)論