通过在 Facebook 上分享
via share on facebook
我正尝试在 Android 中分享内容,使用意图 ACTION_SEND,如下所示:
public void onClick(View v) {
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, content);
startActivity(Intent.createChooser(share, "Сонгох"));
}
使用 Android
的意图在 Facebook 上分享时不显示消息
希望下面的代码对您有所帮助。
Facebook应用分享工作是分享只有一个link没有文字:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.com/");
startActivity(Intent.createChooser(intent, "Share with"));
我正尝试在 Android 中分享内容,使用意图 ACTION_SEND,如下所示:
public void onClick(View v) {
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, content);
startActivity(Intent.createChooser(share, "Сонгох"));
}
使用 Android
的意图在 Facebook 上分享时不显示消息希望下面的代码对您有所帮助。
Facebook应用分享工作是分享只有一个link没有文字:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.com/");
startActivity(Intent.createChooser(intent, "Share with"));