0
我想分享在Facebook中使用ACTION_SEND自定義文本使用android,我正在使用下面的代碼,它只是打開一個Facebook Post對話框。短信是不可見的消息未顯示在Facebook中使用ACTION_SEND在Android中分享
Intent intent = new Intent();
intent.setClassName("com.facebook.katana",
"com.facebook.katana.activity.composer.ImplicitShareIntentHandler");
intent.setAction("android.intent.action.SEND");
intent.setType("text/plain");
intent.putExtra("android.intent.extra.TEXT",
"https://play.google.com/store/apps/details?id=com.instagram.android");
startActivity(intent);