hey! I have a question about an intent... I try to launch the sms app...

Intent intent = new Intent(Intent.ACTION_MAIN);
        intent.setType("vnd.android-dir/mms-sms");
        int flags =
              Intent.FLAG_ACTIVITY_NEW_TASK |
              Intent.FLAG_ACTIVITY_SINGLE_TOP |
              Intent.FLAG_ACTIVITY_CLEAR_TOP;
            intent.setFlags(flags);
        intent.setData(Uri.parse("content://sms/inbox"));
        context.startActivity(intent);

so, you can see that I put too much things in my intent, but that's because I don't know how I can do... Thank's

link|improve this question
feedback

6 Answers

To start launch the sms activity all you need is this:

Intent sendIntent = new Intent(Intent.ACTION_VIEW);         
sendIntent.setData(Uri.parse("sms:"));

You can add extras to populate your own message and such like this

sendIntent.putExtra("sms_body", x); 

then just startActivity with the intent.

link|improve this answer
I tried, but when I write exactly what you give, eclipse console return (when compiling) "No Launcher activity found!" – Olivier69 Mar 3 '10 at 16:07
1  
The button don't work on the emulator – Olivier69 Mar 3 '10 at 16:16
is it a warning or an error? – jqpubliq Mar 3 '10 at 16:17
okay, do you have an activity with the following attributes in its intent filter in your manifest? <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> – jqpubliq Mar 3 '10 at 16:26
in fact, the launch come from an appwidgetactivity. Perh'aps it coms from here, I put what you've done in the manifest and nothing happen... I have test my button with an other function et this one don't want to go!! – Olivier69 Mar 3 '10 at 16:41
show 3 more comments
feedback
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);

That's all you need.

link|improve this answer
feedback
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.setType("vnd.android-dir/mms-sms");
smsIntent.putExtra("address", "12125551212");
smsIntent.putExtra("sms_body","Body of Message");
startActivity(smsIntent);
link|improve this answer
feedback

Use

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setClassName("com.android.mms", "com.android.mms.ui.ConversationList");
link|improve this answer
feedback

I use:

Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "text");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
link|improve this answer
feedback

Here is the code that will open the SMS activity pre-populated with the phone number to which the SMS has to be sent. This works fine on emulator as well as the device.

Intent smsIntent = new Intent(Intent.ACTION_SENDTO);
smsIntent.addCategory(Intent.CATEGORY_DEFAULT);
smsIntent.setType("vnd.android-dir/mms-sms");
smsIntent.setData(Uri.parse("sms:" + phoneNumber); 
link|improve this answer
how can I attach a picture to this message? – unresolved_external May 16 at 13:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.