Чтобы открыть собственный композитор SMS:
String number = "12346556"; // The number on which you want to send SMS
20
startActivity(new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", number, null)));
ИЛИ
Uri uri = Uri.parse("smsto:12346556");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "Here you can set the SMS text to be sent");
startActivity(it);
Дополнительная информация: Пример отправки SMS .