溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android多線程實(shí)例分析

發(fā)布時間:2022-03-29 16:22:47 來源:億速云 閱讀:141 作者:iii 欄目:移動開發(fā)

本文小編為大家詳細(xì)介紹“Android多線程實(shí)例分析”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Android多線程實(shí)例分析”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

在android程序中,會有一些耗時的操作,比如從網(wǎng)上抓取圖片,下載文件,批量更新數(shù)據(jù)庫等,這些操作對于手機(jī)而言會需要很長的時間,而應(yīng)用程序界面又不能等到這些操作完成后再顯示,所以要讓界面各這些耗時的操作并行處理,用多線程可以解決這個問題。當(dāng)然還有其它解決方案,比如用Service.

我們先作一個例子吧,大概是這樣的:有一個列表,每行顯示的一個圖片,圖片是存放在網(wǎng)上的。如果不用多線程,也是可以的,但是要等到所有圖片下載完了才能展示出來。這種方式對用戶體驗(yàn)很不友好,所以我們采用多線程的方式,對每一個圖片開啟一個線程,當(dāng)其下載完數(shù)據(jù)后,在主線程中顯示出來。

主Activity

public class TestListActivity extends ListActivity { private ImageListAdapter imageListAdapter = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.imagelist); String[] images = {"https://cache.yisu.com/upload/information/20210522/379/538936.jpg","https://cache.yisu.com/upload/information/20210522/379/538938.jpg"}; imageListAdapter = new ImageListAdapter(getApplicationContext(), images); setListAdapter(imageListAdapter); } }

適配器

  1. import java.util.ArrayList; 

  2. import java.util.List; 

  3. import android.content.Context; 

  4. import android.graphics.Bitmap; 

  5. import android.os.Handler; 

  6. import android.os.Message; 

  7. import android.view.View; 

  8. import android.view.ViewGroup; 

  9. import android.widget.BaseAdapter; 

  10. import android.widget.ImageView; 

  11. import android.widget.TextView; 

  12.  

  13. public class ImageListAdapter extends BaseAdapter { 

  14. private Context context; 

  15. private String[] myImages = null; 

  16. public ImageListAdapter(Context context, String[] myImages){ 

  17. this.context = context; 

  18. this.myImages = myImages; 

  19. @Override 

  20. public int getCount() { 

  21. if(myImages == null){ 

  22. return 0; 

  23. return myImages.length; 

  24. @Override 

  25. public String getItem(int position) { 

  26. if(position < 0 || myImages == null || position>myImages.length){ 

  27. return null; 

  28. return myImages[position]; 

  29. @Override 

  30. public long getItemId(int position) { 

  31. return position; 

  32. @Override 

  33. public View getView(int position, View convertView, ViewGroup parent) { 

  34. View item = null; 

  35. if(convertView != null){ 

  36. item = convertView; 

  37. } else { 

  38. item = View.inflate(context, R.layout.image_item, null); 

  39. final ImageView imageView = (ImageView)item.findViewById(R.id.image); 

  40. final String image = getItem(position); 

  41. if(image == null){ 

  42. return item; 

  43. //對每個圖片地址創(chuàng)建一個線程, 

  44. new Thread(){ 

  45. public void run(){ 

  46. Message msg = new Message(); 

  47. msg.what = 0; 

  48. //獲得圖片的Bitmap對象。getBitmap省略了,就是從網(wǎng)上通過http下載圖片然后轉(zhuǎn)化成一個Bitmap 

  49. Bitmap bitmap = getBitmap(image); 

  50. List list = new ArrayList();//將bitmap和imageView包裝成一個List傳到線程外 

  51. list.add(bitmap); 

  52. list.add(imageView); 

  53. msg.obj = list; 

  54. handler.sendMessage(msg); 

  55. }.start(); 

  56. return item; 

  57. private Handler handler = new Handler() { 

  58. @Override 

  59. public void handleMessage(Message msg) { 

  60. switch (msg.what) { 

  61. case 0://接到從線程內(nèi)傳來的圖片bitmap和imageView. 

  62. //這里只是將bitmap傳到imageView中就行了。只所以不在線程中做是考慮到線程的安全性。 

  63. List list = (List)msg.obj; 

  64. Bitmap bitmap = (Bitmap)list.get(0); 

  65. ImageView iv = (ImageView)list.get(1); 

  66. iv.setImageBitmap(bitmap); 

  67. break; 

  68. default: 

  69. super.handleMessage(msg); 

  70. }; 

  71. }

布局xml
imagelist.xml

android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding = "10px" android:gravity="center_horizontal" android:background="#ffffff"> android:layout_width="fill_parent" android:layout_height="fill_parent" /> android:layout_width="wrap_content" android:layout_height="wrap_content" /> image_item.xml android:layout_width="fill_parent" android:layout_height="wrap_content"> android:id="@+id/image" android:layout_width="70px" android:layout_height="50px" android:paddingRight="5px"/>

讀到這里,這篇“Android多線程實(shí)例分析”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI