Uri uri = Uri.parse("sms:" + "1234567");
                 Intent intent = new Intent(Intent.ACTION_SENDTO,uri);
               
                 //intent.setData(uri);
                // intent.putExtra("address", uri);
                 intent.putExtra("sms_body", "...");
                //  intent.setType("vnd.android-dir/mms-sms");
                 startActivity(intent);

이렇게 소스코딩하면,  1234567번호로 문자보내기 창이 intent fire됩니다요...

그런데 여기서 더나아가서...

추가번호 888-8888번를 넣어서 1234567번, 888-8888번으로 2명이상 지정해서 문자보내기 창을 띄울수는 없을 까요???