Hi All,

Thanks for read my issue.

The Android's own app Gallery is very cool, now I have a requirement
to add an external app to view the media, let me describe it detail,
the following is the steps:
1. Run android's Gallery, in the first page, Gallery list all
directorys which include media (image / video).
2. Long touch one of the directory, then a context menu will pop up
where has two menu items: Slideshow & View.

My requirement is to lunch other app when clicking the menu item View,
for example, in other app (I will implement it) user can multi select
the medias then process them (i.e. delete them, compress them to a
file, or copy them to other place).

I think it should be implemented by intent filter, so I add a intent
filter to AndroidManifest.xml as below:
<activity android:name=".MyActivity" android:name="Test"
   android:multiprocess="true" android:exculdeFromRecents="true">
   <intent-filter>
        <action andriod:name="android:intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <type android:value="vnd.android.cursor.dir/*" />
    </intent-filter>
</activity>

But it cannot work.
Do I describe the requirement clear? Can it be implemented?

Thank you.
- Anthony
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to