Reputation: 1843
I want to call android application on clicking of button or image on some website from mobile. Suppose I am opening one image or url on android browser and I want to call another application on clicking on button provided by that site. How to do that??
I am blogger and i want to open play store application from browser when my readers click on Google Play Badges image.
Upvotes: 0
Views: 269
Reputation: 12169
It is possible to start an application from WebView:
Android SDK WebView call Activity
http://developer.android.com/guide/webapps/webview.html#BindingJavaScript
But it is not possible to send intent from regular web browser.
Edit:
If you need to open Google Play just use a regular html a href with the url of an application on the Google Play.
P.S. : Take a look on this useful thread Make a link in the Android browser start up my app?
Upvotes: 2