Hi, I created an Activity that I would like call when user wants display a picture. I found a lot of source code as below <activity android:name=".TestActivity"> <!-- My Activity -- > <intent-filter android:label="Mon Test"> <action android:name="android.intent.action.VIEW" /> <data android:mimeType="image/*" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.ALTERNATIVE" / > <category android:name="android.intent.category.SELECTED_ALTERNATIVE" /> </intent-filter> </activity>
But when I open Gallery and try opening a picture my application is not proposed. What's wrong? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---