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:

  1. you read post? need open app, not send message.

  2. 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

Popular posts from this blog

wireshark - USB mapping with python -

c++ - nodejs socket.io closes connection before upgrading to websocket -

Deploying Qt Application on Android is really slow? -