在我的應用程序中,我希望能夠分享一些來自我的應用程序的圖像內容到Facebook,Instagram和Twitter。我知道我可以發送一個廣播,使用下面的代碼來完成:在Facebook,Instagram和Twitter上分享Android應用程序
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("plain/text");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "This is the text that will be shared.");
startActivity(Intent.createChooser(sharingIntent,"Share using"));
但我的問題是,我想獲得一個回調,告訴我,如果用戶已共享的內容(圖像)或沒有。有沒有什麼方法可以做到這一點? Facebook的sdk呢?它提供了這樣的功能嗎?我搜索了Instagram,似乎他們不提供這樣的funcionality。那麼Twitter呢?
沒有Facebook的SDK,我不這麼認爲,你可以分享從Android到Facebook的東西。 – Jamil
@Softcoder你可以輕鬆地在facebook上分享任何東西,而無需其sdk。這是一個簡單的廣播和Facebook應用程序本身處理它與自己的對話和東西。但不會有任何回調。我認爲facebook sdk會給你一些回調來處理內容是否被共享。但是,無論如何謝謝 –
PLZ看到這個http://stackoverflow.com/questions/25402706/android-share-text-not-showing-up-in-facebook/25402734#25402734 – Jamil