Hi,
I'm developing an app which is basically a dialer. I want to open my app if someone click a link in any web page where the link href is like tel:1234567890.
I wrote the following code in mainfest editor
Now my app is opening as expected. But how can I get 1234567890 within Main activity to process further?
can you please guide me?
I'm developing an app which is basically a dialer. I want to open my app if someone click a link in any web page where the link href is like tel:1234567890.
I wrote the following code in mainfest editor
B4X:
AddActivityText(Main,
<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="tel"/>
</intent-filter>)
Now my app is opening as expected. But how can I get 1234567890 within Main activity to process further?
can you please guide me?
Last edited: