2015-06-30 125 views
1

我在資產文件夾中共享數據時遇到問題,我寫了一些代碼來做這件事。但它不工作,我無法分享任何內容。 我想通過所有社交網絡Android應用程序共享圖像。 這是我的代碼:如何在android中通過assets文件夾共享圖片?

String path="file:///android_asset/"+share.jpg; 
    Intent whatsappIntent = new Intent(Intent.ACTION_SEND); 
    Uri uri=Uri.parse(path); 
    whatsappIntent.setType("image/*"); 
    whatsappIntent.putExtra(Intent.EXTRA_STREAM,uri); 
    try { 
     startActivity(whatsappIntent); 
    } catch (android.content.ActivityNotFoundException ex) { 
     //ToastHelper.MakeShortText("Whatsapp have not been installed."); 
} 

我怎樣才能解決這個問題 感謝

回答

相關問題