I want to open the Android SMS application from my application and I don\'t want to set any contact as a recipient, How?
Uri uri = Uri.parse("smsto:"); Intent intent = new Intent(Intent.ACTION_SENDTO, uri); intent.putExtra("sms_body", "Hello World!"); startActivity(intent);
this way doesn't need any permission in Manifest
Manifest