When we click on messages we are showed with the inbox.
I want to show the same window when i clicked on my application\'s button.
So, I want to start message in
String SMS_MIME_TYPE = "vnd.android-dir/mms-sms"; Intent defineIntent = new Intent(Intent.ACTION_MAIN); defineIntent.setType(SMS_MIME_TYPE); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0 , defineIntent, 0);
Not sure whether it works or not