Android通过intent.createChooser发送短信

时间:2011-10-24 15:43:30

标签: android

这是我让用户发送短信的方式:

Intent intentt = new Intent(Intent.ACTION_SEND);
intentt.setType("text/plain");
intentt.putExtra(Intent.EXTRA_TEXT, "");
intentt.putExtra("address", selecteditem_phone);
startActivityForResult(Intent.createChooser(intentt, ""), 0);

这会显示很多应用的列表。我怎么能告诉android只启动有短信功能的应用程序?

1 个答案:

答案 0 :(得分:2)

改为创建你的意图:

Intent intentt = new Intent(Intent.ACTION_VIEW);         
intentt.setData(Uri.parse("sms:"));
intentt.setType("vnd.android-dir/mms-sms");
intentt.putExtra(Intent.EXTRA_TEXT, "");
intentt.putExtra("address", selecteditem_phone);
startActivityForResult(Intent.createChooser(intentt, ""), 0);