「メニュー」ボタンからどのようにメールを送信しますか?「送信」というオプションでメニューを膨らませました。押すと、Intent.ACTION_SENDが開き、ユーザーは私にメールを送信することを選択できます。
ButtonとOnClickListenerを介してこれを実現する方法を知っています。しかし、メニューを通してではありません。以下に貼り付けたコードは機能しません。私は何が間違っているのですか?
お時間をいただきありがとうございます。
CustomStoreActivity:
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.customstore_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.send:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL,
new String[] { "myemail@myemail.com" });
i.putExtra(Intent.EXTRA_SUBJECT, "Adding new shop to MinuteMap");
i.putExtra(Intent.EXTRA_TEXT, "nll");
// shopName + shopTimeM1);
break;
default:
return super.onOptionsItemSelected(item);
}
return true;
}