我有這樣的代碼:如何用附加的位圖開始活動?
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
startActivity(intent);
其成功發射的消息傳遞應用程序在Android上。
但是,如何啓動意圖時附加一個位圖對象?
我已閱讀http://developer.android.com/reference/android/content/Intent.html, 衣櫃裏的東西我需要的是EXTRA_STREAM,像這樣: intent2.putExtra(Intent.EXTRA_STREAM,_uri);
但我的情況,我有一個位圖對象的引用,而不是一個 位圖的URI。
請告訴我如何附加一個Bitmap對象?
謝謝。
**你可以在這裏看到了答案:** HTTP:/ /stackoverflow.com/questions/2459524/how-can-i-pass-a-bitmap-object-from-1-activity-to-another – 2011-08-21 23:40:16