我有一个按下按钮,显示共享文本的可能方式
llShare.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
}
});
由于Facebook不允许使用预定义文本,因此我将不得不使用他们的SDK以某种方式使其成为可能...我可以这样做,还需要添加什么来使他们的库工作?我还没有为分享制作任何自定义类(是否需要?)
答案 0 :(得分:0)
由于无法得出结论,您需要花更多时间阅读有关Android Facebook SDK的纪录片。
我与你分享链接到描述如何在android平台上实现共享的文章。