Dear All
I need intent an app form web html, and this is solved below.
But now, I need send some string data to this app when intents. Such as sending a web link to this app. I have read some threads but i can't find solution.
May some one can tell me both send and receive method or function.
HTML:---------------------------------------------
App's:Manifest file--------------------------------------
I need intent an app form web html, and this is solved below.
But now, I need send some string data to this app when intents. Such as sending a web link to this app. I have read some threads but i can't find solution.
May some one can tell me both send and receive method or function.
HTML:---------------------------------------------
B4X:
<a href="intent://you package name#Intent;scheme=http;package=you package name;end;">link</a>
App's:Manifest file--------------------------------------
B4X:
<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="you package name" />
</intent-filter>
Last edited: