1

On click of any email id with mailto: protocol, I want to redirect app to any mail application. For that I 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. But it fail to work on Nexus 7 and Medion Life Tab. They both have Jelly Bean installed. However, it works on some Nexus 7. In intent chooser it shows NFC and Quick send apps but not any Mail application or skype.

I have looked into following links : android - Mail app not support in nexus 7 and Android 4.2.2 - GMail app not in intent chooser. But it doesn't help.

What can be the reason to such strange behaviour of some devices?

4

0 回答 0