Nguyen  Minh Binh
Nguyen Minh Binh

Reputation: 24423

Data Uri for each intent in android

Android defines various of intent actions, How can I know what uri-data I can use with each intent?

Upvotes: 0

Views: 2203

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006944

How can I know what uri-data I can use with each intent?

In some cases, it may be described in the documentation of the action. In other cases, the action is generic (e.g., ACTION_EDIT), and so there may be any number of possible MIME types that will be supported, depending on what software is installed on the device.

And Each action (such as Intent.ACTION_VIEW, Intent.ACTION_EDIT,...) I want to see a full reference of all Data URI which it can receive.

That is not knowable in advance. It depends on what software is installed on your device.

I just want to see a full list of actions which were defined by Android

There is no such list.

Upvotes: 2

Related Questions