ユーザーに「共有」オプションを表示するために、アプリケーションに次のコードを記述しました。
「メール」、「Gmail」、「Youtube」は見えますが、「Facebook」は見えません:(
try {
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, mEvent.getName());
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, txtDesc.getText());
startActivity(Intent.createChooser(emailIntent, "Send your email in:"));
} catch (Exception e) {
Toast.makeText(getApplicationContext(),
"Email faild, please try again later!",
Toast.LENGTH_LONG).show();
e.printStackTrace();
}
「facebook」オプションを追加するには?