2015-05-19 96 views
0

我想通過意向與文本共享圖像。不是圖像整體或文本differtent。看,這是我的代碼:如何在android中使用圖像共享文本的意圖?

Uri imageUri = Uri.parse("android.resource://" + getPackageName() 
     + "/drawable/app_icon"); 

String shareTxt = "Hey, now this is image "+ imageUri + " text."; 

Intent shareIntent = new Intent(); 
shareIntent.setAction(Intent.ACTION_SEND); 
shareIntent.putExtra(Intent.EXTRA_TEXT, shareTxt); 
shareIntent.putExtra(Intent.EXTRA_STREAM, imageUri); 
shareIntent.setType("image/*"); 
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); 
startActivity(Intent.createChooser(shareIntent, "Share")); 

輸出:我需要:「文字圖像文本」

但實際上出來把這個:形象整體低於文字的到來。

所以,android的人幫助我。

回答