2014-02-12 70 views
0

,而我已經成功地共享字符串到其它應用程序,如電子郵件..有與Facebook的問題分享至Facebook ...從Android的意圖問題

這裏是我的代碼:

private void sharePost() { 

Intent shareIntent = new Intent(Intent.ACTION_SEND); 
shareIntent.putExtra(Intent.EXTRA_TEXT, dataSecContent); 
shareIntent.setType("text/plain"); 
startActivity(Intent.createChooser(shareIntent, 
     getString(R.string.share_chooser_title))); 
} 

這就是我只得到...沒有字符串或任何...

facebook share

我到底做錯了什麼?我試過發送帶有URI的URL併成功分享..但不是字符串..

+0

可能重複http://stackoverflow.com/questions/3515198/share-text-on-facebook-from-android-app-via-action-send和http://stackoverflow.com/questions/7545254/android - 和Facebook的份額,意圖是什麼?RQ = 1仍沒有解決 – chip

+0

@zipc耶其同..我剛纔檢查了他們...有在Facebook上的我覺得一側的錯誤。 –

回答