I'd like to open the default SMS application and load the content with some text, but I don't want to provide a phone number. Instead, I'd like to leave that field in blank so that the user can choose the recipient.
This is how the SMS app is usually invoked:
Intent intent = new Intent(Intent.ACTION_SENDTO, "smsto:666");
However, I'd like to do as when opening email client:
Intent emailIntent = new Intent(Intent.ACTION_SEND);
Is it possible to do the same? If so, which attributes should I set to the intent so that it opens the SMS app?