buggydroid
buggydroid

Reputation: 1870

Interacting with WebView in Android

I have a webview and onCLick of a thumbanail in the webview I need to show a gallery from Android activity. How do I achieve this? Also can I get a sample code/app as how to interact with the WebView and back.

Upvotes: 4

Views: 2487

Answers (1)

Sameer
Sameer

Reputation: 4389

http://developer.android.com/guide/webapps/webview.html

You need to create a class in your Android code and pass it to the webview using WebView.addJavascriptInterface

Upvotes: 2

Related Questions