我想在没有预定义收件人的情况下打开短信意图,这是我的代码。
Uri myuri = Uri.parse("to:");
Intent smsintent = new Intent(Intent.ACTION_SENDTO, myrui);
smsintent.putExtra("sms_body", "new sms here boddy");
startActivity(smsintent);
我得到了例外
myuri can't be parsed
为什么?
我想在没有预定义收件人的情况下打开短信意图,这是我的代码。
Uri myuri = Uri.parse("to:");
Intent smsintent = new Intent(Intent.ACTION_SENDTO, myrui);
smsintent.putExtra("sms_body", "new sms here boddy");
startActivity(smsintent);
我得到了例外
myuri can't be parsed
为什么?