i know my question is been asked for many times here but i tried all the answers and still have the problem my problem is that i want my application to be opened throw url from the mobile browser
here is what i write in the mainfeast.xml file
<activity
android:name=".Login"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<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:host="" android:scheme="mpay2park" />
</intent-filter>
and still can't solve this issue what I want to know that if I should write anything in the Login.java activity or not and what is the URLthat I should to write for this
Thank you
You can use below manifest file to open abc://xyz.com from browser addressbar :
This will ask option(with your application name) in dialog to open this url.
hope so this will work for you.
Enjoy.
I solve my problem ,here is what i write on mainfest file
and I change the android browser and open my like from opera mini and it works perfect for me