On android devices, is there any way to control what appears in the sharing panel? When I use native.showPopup(“mail”, emailOptions) , I really just want only email clients to be displayed. Instead, I get email clients, bluetooth, wifi, and a stack of others.
It also seems to depend on the emailOptions. For example, if emailOptions includes an attachment, I get a lot more options, like facebook, bluetooth, picasa, photos - along with the email app(s).
The exact problem, with solutions is described here, but for native apps:
http://stackoverflow.com/questions/8701634/send-email-intent
and finally - I tried using system.openURL( “mailto:nobody@mycompany.com” ) as a test. This restricted the list to just my installed email clients , and bizarrely, bluetooth. This doesn’t help if you need to send attachments or HTML emails however.
thanks