I have a WebView that is populated from the server in my app. HTML,that is being fed into it, has a button. Once that button is clicked it should open activity within the app. is this possible?
I could just add a Button widget but was wondering if its possible to have button in WebView
So its something like this.
WebView with HTML containing button -> click it -> open TestActivity
What would i put into
<a href="TestActivity">Test Activity</a>
Hope it makes sense.