Hi. Please tell me how to receive (with a BroadcastReceiver)  intent 
messages from the browser application. Currently my manifest code 
snippet looks like this:

        <receiver android:name=".receiver.BrowseReceiver">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category 
android:name="android.intent.category.BROWSABLE" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.WEB_SEARCH" />
            </intent-filter>
            <!--
                <intent-filter> action 
android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category 
android:name="android.intent.category.BROWSABLE" />
                <action 
android:name="android.intent.browser.BrowserActivity" />
                <action android:name="android.intent.action.WEB_SEARCH" 
<action
                android:name="android.intent.action.SEARCH" /> 
</intent-filter>
            -->
        </receiver>

Does anyone have a solution for this?

Thanks



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