Hello everybody,

I am trying to intercept an intent for http URLs within the BROWSABLE
category. I've tried using the following:

<activity
        android:name=".MyActivity"
        android:label="@string/app_name">
        <intent-filter>
                <action
                        android:name="org.oos.intent.action.VIEW" />
                <category
                        android:name="android.intent.category.DEFAULT" />
                <category
                        android:name="android.intent.category.BROWSABLE" />
                <data
                        android:scheme="http" />
        </intent-filter>
</activity>

as well as specifying the host and the port and most possible options.
And yet I never get the intent to touch my activity.
Am I missing something? Do I require to register any permission? or
something else?

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