dear all,
as my subject states half of my problem..
I am registering an Intent Filter under my activity tag in manifest
file using foloowing

<intent-filter>
            <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="image/*" />
</intent-filter>

this registers my activity for share options in gallery app., but it
is always the last option shown by the gallery application.
i even tried giving

<intent-filter android:priority = "999">
            <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.ALTERNATIVE" />
                <data android:mimeType="image/*" />
</intent-filter>
but priority is not working there..
what i need is my application should be among top positions in that
share menu ....
is it possible, ??? well i think so its possible but dont know wat to
be done...., be coz it isnt in the order of installation of
application...
Plz urgent help required

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