定義済みの受信者なしで SMS インテントを開きたいのですが、これが私のコードです。
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
どうして?