Abra la aplicación de Android desde el navegador predeterminado de Android

I try to open my app from the browser not able to do this till now. I found many solution on web and try to make my code working. a added this code to my manifest file and try to open my app from browser by typing url on android default browser but it is not asking for any dialog chooser and just open url on browser, Please tell me what i am doing wrong. Help me please. Thanks in advance.

<intent-filter>
    <action android:name="android.intent.action.VIEW"></action>
    <category android:name="android.intent.category.DEFAULT"></category>
    <category android:name="android.intent.category.BROWSABLE"></category>
    <data android:scheme="http" android:host="www.google.com"></data>
 </intent-filter>

preguntado el 28 de mayo de 14 a las 12:05

1 Respuestas

you cant open any applications by typing on Browser

By clicking any link of http://www.google.com you can open this application

Send an email to that mobile by sending http://www.google.com

and open the link from the email now it will opens your application

contestado el 28 de mayo de 14 a las 12:05

But we can get chooser dialog for the url "market.android.com". and i can also add my app to this chooser dialog by adding <data android:scheme="https" android:host="market.android.com"></data> what is this? - Sunit Kumar Gupta

No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas or haz tu propia pregunta.