Android和Facebook分享意图
我正在开发一个Android应用程序,并且想知道如何使用Android的共享意图从该应用程序内更新应用程序用户的状态。 浏览了Facebook的SDK后,看来这很容易做到,但是我渴望允许用户通过常规的“共享意图”弹出窗口来做到这一点吗?在这里看到: 我已经尝试了常用的共享意图代码,但是对于Facebook来说似乎不再起作用。 public void invokeShare(Activity activity, String quote, String credit) { Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND); shareIntent.setType("text/plain"); shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, activity.getString(R.string.share_subject)); shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Example text"); activity.startActivity(Intent.createChooser(shareIntent, activity.getString(R.string.share_title))); } 更新:经过更多的挖掘,看来这是Facebook应用程序的一个错误,尚未解决!(facebook错误)同时,我似乎不得不忍受负面的“共享不起作用!!!” 评论。欢呼脸书:*(