android - Is it possible to add extras to browsable intents from HTML -
let's take per following manifest: <intent-filter> <data scheme="myscheme" host="myhost"> </data> <action name="android.intent.action.view"> </action> <category name="android.intent.category.default"> </category> <category name="android.intent.category.browsable"> </category> </intent-filter> i launch activity under above intent filter declared redirecting browser to: myscheme://myhost?param1=param1¶m2=param2 however, i'm struggling understanding if possible same redirection, additional extras received programmatically with: myextra = getintent().getstringextra('myextra') any appreciated. this how overcome issue, i developed own browser , made browsable do uri data = getintent().getdata(); if(data == null) { // opened app icon click (without link redirect) toast.maketext(this, &q