android - Marshmallow message application is not opening -


i trying open message application application getting activitynotfoundexception in marshmallow. used below code:

intent n = new intent(intent.action_view); n.settype("vnd.android-dir/mms-sms"); n.putextra("address", phone); n.putextra("sms_body", " "); startactivity(n); 

i use code on android m , works:

intent n = new intent(intent.action_view); n.setdata(uri.parse("sms:")); n.putextra("address", phone); n.putextra("sms_body", " "); startactivity(n); 

Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -