Trying to launch my app via the Intent Filter, I've read, and re read
the guide
http://developer.android.com/guide/topics/intents/intents-filters.html
but no luck.

Is there anyway to watch how the browser is doing the matching and see
why my filter fails?

I have two filters for my main activity.  The first one works.

           <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
                        </intent-filter>
                <intent-filter>
                        <action 
android:name="android.intent.action.MAIN"></action>
                                <category 
android:name="android.intent.category.BROWSABLE"></
category>
                                <category 
android:name="android.intent.category.DEFAULT"></
category>
                                <data android:scheme="http" 
android:mimeType="application/
liveurl"></data>
               </intent-filter>

I have a simple servlet that sets the mime type to application/
liveurl, the emulator's browser tries to download the content and then
says there is no support of the content on the phone.  I'm stuck on
what could be wrong.  Can an activity not be both a main and a
browsable?  Is the code I'm missing in the activity to respond to
being browsable that's causing this to fail?

Any help?

- Peace
Dave

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