I'm thinking of implementing a HTML welcome panel to our Android app, which presents news and offers on the start-up screen. My question is now, if I present an offer to a specific place (with an id string
) can I trigger a callback from the WebView (maybe via Java Script) to the Android app and passing that id string
to make it start a new Activity
which loads and shows data from a server (JSON) depending on that id string
?
The second part is already implemented and working. My main concern is how to get the id string
from the HTML WebView back to the Android app when the user clicks on it.
We prefer to use a WebView for that specific welcome panel, because it gives us more flexibility to customize by using HTML.