Android基礎 -- Activity之間傳遞資料(bitmap和map對象)

來源:互聯網
上載者:User

標籤:

原文:http://blog.csdn.net/xueerfei008/article/details/23046341

 

做項目的時候需要用到在2個activity之間傳遞一些資料,之前做的都是些字串之類的東東,結果這次卡了好久,折騰了一個下午。

第一個:傳遞bitmap

  這個問題非常奇葩(可能我android水平還不夠),居然不會報錯,我是直接用bundle或Intent的extral域直接存放bitmap,結果運行時各種宕機,各種介面亂竄(我非常的納悶)。。。搜尋之後看大家都說不能直接傳遞大於40k的圖片,然後在德問論壇上找到瞭解法。就是把bitmap儲存為byte數組,然後再通過Intent傳遞。

的 

 代碼如下所示:

 

[java] view plaincopy 
  1. Bitmap bmp=((BitmapDrawable)order_con_pic.getDrawable()).getBitmap();  
  2. Intent intent=new Intent(OrderConfirm.this,ShowWebImageActivity.class);  
  3. ByteArrayOutputStream baos=new ByteArrayOutputStream();  
  4. bmp.compress(Bitmap.CompressFormat.PNG, 100, baos);  
  5. byte [] bitmapByte =baos.toByteArray();  
  6. intent.putExtra("bitmap", bitmapByte);  
  7. startActivity(intent);  


其中 第一行代碼就是如何從一個imageview中獲得其圖片,這個問題也倒騰了下,貌似用setDrawingCacheEnabled也行,因為開始用的這個方法,但是直接在activity之間傳遞bitmap,所以導致執行階段錯誤,後來改正之後沒有再嘗試。

 

先new一個ByteArrayOutputStream流,然後使用Bitmap中的compress方法,把資料壓縮到一個byte中,傳輸就可以了。

在另一個activity中取出來的方法是:

 

[java] view plaincopy 
  1. imageView = (ZoomableImageView) findViewById(R.id.show_webimage_imageview);  
  2.         Intent intent=getIntent();  
  3.         if(intent !=null)  
  4.         {  
  5.             byte [] bis=intent.getByteArrayExtra("bitmap");  
  6.             Bitmap bitmap=BitmapFactory.decodeByteArray(bis, 0, bis.length);  
  7.             imageView.setImageBitmap(bitmap);  
  8.         }  

取出來位元組數組之後,用BitmapFactory中的decodeByteArray方法組合成一個bitmap就可以了。

 

再加上一個儲存的代碼:

 

[java] view plaincopy 
  1. public void saveMyBitmap(String bitName,Bitmap mBitmap) throws IOException {  
  2.         File f = new File("/sdcard/Note/" + bitName);  
  3.         if(!f.exists())  
  4.             f.mkdirs();//如果沒有這個檔案夾的話,會報file not found錯誤  
  5.         f=new File("/sdcard/Note/"+bitName+".png");  
  6.         f.createNewFile();  
  7.         try {  
  8.             FileOutputStream out = new FileOutputStream(f);  
  9.              mBitmap.compress(Bitmap.CompressFormat.PNG, 100, out);  
  10.              out.flush();  
  11.              out.close();  
  12.         } catch (FileNotFoundException e) {  
  13.                 Log.i(TAG,e.toString());  
  14.         }  
  15.          
  16.     }  



 

2.傳遞map對象:

封裝到bundle中:

 

[java] view plaincopy 
  1. Map<String,Object> data=orderlist.get(arg2-1);  
  2.             SerializableMap tmpmap=new SerializableMap();  
  3.             tmpmap.setMap(data);  
  4.             bundle.putSerializable("orderinfo", tmpmap);  
  5.             intent.putExtras(bundle);  


這個SeralizableMap是自己封裝的一個實現了Serializable介面的類:

 

 

[java] view plaincopy 
  1. public class SerializableMap implements Serializable {  
  2.     private Map<String,Object> map;  
  3.     public Map<String,Object> getMap()  
  4.     {  
  5.         return map;  
  6.     }  
  7.     public void setMap(Map<String,Object> map)  
  8.     {  
  9.         this.map=map;  
  10.     }  
  11. }  

這樣才能把map對象扔到bundle中去,

 

取出來的方法是:

 

[java] view plaincopy 
    1. Bundle bundle = getIntent().getExtras();  
    2.         SerializableMap serializableMap = (SerializableMap) bundle  
    3.                 .get("orderinfo");  

Android基礎 -- Activity之間傳遞資料(bitmap和map對象)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.