I've done my research and found plenty of people launching the sms application from an intent, The thing is that people usually tend to do this only for outgoing messages.
I'm currently displaying a Unread Sms Count on my app, but it seams I cant get the proper intent to work.
On every try I get the same result, It launches the app but for a new sms...
My current intent looks like this
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("sms:"));
startActivity(intent);
and it's result is:
- EDIT: Para -> To
- Escribir mensaje -> Write Message
- Enviar -> Send
I hope I'm clear enough about this.
The question is:
How can I go to the inbox of the sms application on android via an Intent?
EDIT: I just want to replicate this:
startActivity(new Intent(this, ConversationList.class));
Wich I took from: http://www.google.com/codesearch/p?hl=en#dpDz7Q08o9c/src/com/android/mms/ui/ComposeMessageActivity.java @LINE: 2028
On my own app. But I cant seem to get it to work.
Thanks in advanced.