Hi,

Your intent filter should look like this :
 <intent-filter android:icon="@drawable/icon" android:label="@string/
intent_open_image">
       <action android:name="android.intent.action.VIEW"></action>
       <category android:name="android.intent.category.DEFAULT"></
category>
       <data android:mimeType="image/*"></data>
 </intent-filter>

Don't forget to include the mime type with the <data> element. Your
<type> element does not exist.
http://developer.android.com/intl/fr/guide/topics/manifest/data-element.html

Nivek
--~--~---------~--~----~------------~-------~--~----~
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