//this snip will launch the SMS application without the need to ask for the SMS Permission in Manifest.
String phonehere = 443xxxxxxx; //place phone number here
//initialize
Uri smsUri = Uri.parse("tel:" + phonehere );
Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);
intent.putExtra("address", phonehere);
intent.putExtra("sms_body", bookfrommap);
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
}
}
