I’m trying to use intents to open some clients in Android:
-
For the e-mail client I’m using ACTION_VIEW with a mailto URI, and I’m getting the message: “Unsupported Action! That action is not currently supported”. Is it an issue only on the emulator, and is supposed to work on a device? (I don’t have one, so I can’t check)
-
For the text message I’m using ACTION_SENDTO with a tel URI, and I’m simply getting no response. What’s the right action for it?
I know about the constants CATEGORY_APP_EMAIL and CATEGORY_APP_MESSAGING, but they were only added in the latest version (API 15).
Thanks.
First point is ok.
The second, you have to call action view with uri like “sms:”…