java - Launching app outside of sender using Intent Filter -
so i'm trying capture geo addresses outside app, , i've set code follows in manifest:
<intent-filter android:priority="0"> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <category android:name="android.intent.category.browsable" /> <data android:scheme="geo" /> </intent-filter>
that works great, when click postal address or lat/lng pair in browser, has app in picker pops up.
the issue have when selecting app said popup picker, starts intent in browser. want start app outside of browser, google maps app does, monopolizing browser wouldn't nice thing users.
thanks in advance suggestions, , apologies if question, couldn't find similar searching around.
Comments
Post a Comment