也許是一個簡單的問題:我想通過網絡分享一個位圖到twitter/facebook /等默認共享「意圖」。在Android上分享Bitmap()到twitter,facebook,郵件
的代碼,我發現在點「IDONTKNOW」與位圖來填充
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpeg");
sendIntent.putExtra(Intent.EXTRA_STREAM, "IDONTKNOW");
sendIntent.putExtra(Intent.EXTRA_TEXT,
"See my captured picture - wow :)");
startActivity(Intent.createChooser(sendIntent, "share"));
需求。 (this.bitmap)
我發現沒有辦法來處理這個不保存位圖到內部SD ..
問候
這個問答是值得一讀http://stackoverflow.com/questions/9049143/android -share-intent-for-a-bitmap-is-it-possible-not-save-it-pre-sharing – Suragch 2015-05-11 04:16:56