I follow this code:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
It work up to android 5.1, but doesn't work android 6.0, because android.content.ActivityNotFoundException: No Activity found to handle Intent
. So, how to open sms app via implicit intent?
EDIT:
You read my post? I need open app, not send message.
I check this post, but it doesn't work!
You can try this, it work for me:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_APP_MESSAGING);
startActivity(intent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With