Hi,

Is it possible to disable or even remove an intent filter for an
activity in runtime when the filter initially was set in the manifest?
Example:
        <activity
            android:name="com.bla.bla">
            ...
            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category
android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="image/*" />
            </intent-filter>
         </activity>

...and then sometimes don't want my app to turn up in list of apps
being able to send images.

Possible? Permanently remove?
I was thinking PacketManager, but cannot find anything suitable there.

/Chuck

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