According to the Manifest the following SEND and SENDTO intents are
supported:
SEND + MIME type "image/*"
SENDTO + "mailto:" scheme
VIEW + "mailto:" scheme.
It would be nice to extend the SEND intent to other MIME types as
well, especially:
* Support for the "message/rfc822" MIME type
* Support for other MIME types, like "audio/*", "video/*", ...
Since no data is specified through getData(), probably it is enough to
change this:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="image/*" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
into this:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
to accept all MIME types.
This intent could be tested with the OI File Manager
http://www.openintents.org/en/node/159 that uses the SEND intent to
send a selected file.
Peli