1
我想知道我的代碼波紋管有什麼問題?爲什麼資產中的圖像未加載到Facebook共享頁面?如何通過意圖分享圖像到Facebook
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///android_asset/images/end_level_10.png"));
share.putExtra(Intent.EXTRA_SUBJECT, "Congratulation! You get A+ with Kid IQ Game.");
share.putExtra(Intent.EXTRA_TEXT, "https://play.google.com/store/apps/details?id=kids.iq.kidsiqpicturesquestion");
startActivity(Intent.createChooser(share, "Congratulation!"));
感謝您的幫助!
注意,支持庫還包括[FileProvider](http://developer.android.com/reference/android/support/v4/content/FileProvider.html),這是特別構建用於在應用程序之間輕鬆共享文件(包括資產文件夾中的圖像)。 – ianhanniballake