【发布时间】:2011-06-14 19:42:57
【问题描述】:
我试图在拨号时显示活动选择器菜单。以下代码在发送电子邮件时适用于我(来自真手机,在模拟器中不起作用):
/* Create the Intent */
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
/* Fill it with Data */
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"to@email.com"});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Text");
/* Send it off to the Activity-Chooser */
this.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
但是当我将代码更改为:
Intent call = new Intent(android.content.Intent.ACTION_CALL);
call.setData(Uri.parse("tel:" + phoneNo));
this.startActivity(Intent.createChooser(call, "Hello there..."));
没有显示活动选择器菜单,只是直接拨号。我还想在该菜单中列出Skype。你有什么想法吗?
【问题讨论】:
标签: android android-activity skype