android - How to open sms app via implicit intent? -
i follow code:
intent intent = new intent(intent.action_main); intent.addcategory(intent.category_default); intent.settype("vnd.android-dir/mms-sms"); startactivity(intent);
it work android 5.1, doesn't work android 6.0, because android.content.activitynotfoundexception: no activity found handle intent
. so, how open sms app via implicit intent?
edit:
you read post? need open app, not send message.
i check this post, doesn't work!
you can try this, work me:
intent intent = new intent(intent.action_main); intent.addcategory(intent.category_app_messaging); startactivity(intent);
Comments
Post a Comment