您好,登錄后才能下訂單哦!
第六章 Asynctask 異步加載
1.好處:不需要創(chuàng)建線程就可管理線程
缺點(diǎn):步驟多
2.步驟:
(1)創(chuàng)建一個類繼承Asynctask<xxx,xxx,xxx>;
三個泛型參數(shù):
第一個:決定了execute()方法的傳入值類型,決定了doInBackground()方法的傳入值類型
第二個:決定了publishProgress()方法的傳入值類型,決定了onProgressUpdate()方法的傳入值類型
第三個:決定了doInBackground()方法的返回值類型,決定了onPostExecute()方法的傳入值類型、
3.執(zhí)行過程:
onPreExecute→→→doInBackground(子線程中)→→→onPostExecute
↓
↓
↓
publishProgress→→→onProgressUpdate
4.泛型:
Java5.0之后的新特性,可變參數(shù),類型一定,個數(shù)不定
例如:
static int add(Integer...c){
int sum=0;
for(int i=0;i<c.length;i++){
sum+=c[i];
}
return sum;
}
5.下載網(wǎng)絡(luò)資源步驟:
//得到路徑
String path = xxx;
//獲取URL對象
URL url = new URL(path);
//打開鏈接
URLConnection urlConnection = url.openConnection();
//獲取流
InputStream is = urlConnection.getInputStream();
//通過圖片工廠轉(zhuǎn)換得到Bitmap類型的對象
Bitmap bitMap = BitmapFactory.decodeStream(is);
//設(shè)置連接超時
urlConnection.setConnectTimeout(3000);
//設(shè)置讀取超時
urlConnection.setReadTimeout(3000);
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。