android - Mail applications not in intent chooser -
on click of email id mailto: protocol, want redirect app mail application. have used
intent emailintent = new intent(android.content.intent.action_send); emailintent.putextra(android.content.intent.extra_email, aemaillist); emailintent.settype("message/rfc822"); startactivity(intent.createchooser(emailintent, "choose action"));
it works on several devices. fail work on nexus 7 , medion life tab. both have jelly bean installed. however, works on nexus 7. in intent chooser shows nfc , quick send apps not mail application or skype.
i have looked following links : android - mail app not support in nexus 7 , android 4.2.2 - gmail app not in intent chooser. doesn't help.
what can reason such strange behaviour of devices?
Comments
Post a Comment