Hi,

I have an activity for which I'd like to intercept some urls. I have
the following in my manifest:

    <activity
      <intent-filter>
        <action
          android:name="android.intent.action.VIEW" />
        <category
          android:name="android.intent.category.DEFAULT" />
        <category
          android:name="android.intent.category.BROWSABLE" />

        <data
          android:scheme="http"
          android:host="example.com"
          android:path="/some/path" />
      </intent-filter>
    </activity>

However, it seems like any url I click is getting caught by the above
pattern:

    www.example.com // matched
    www.example.com/foo  // matched

Shouldn't the "path" attribute in my definition above be knocking
those matches above out?

Thanks

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

Reply via email to