Issue
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!
Solution
You can try this, it work for me:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_APP_MESSAGING);
startActivity(intent);
Answered By - Sergey Molyak
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.