weakwire
weakwire

Reputation: 9300

How to call a javascript function and get the html code it returns ,Java,Android

There is a HTML page that has a javascript function in it.This function returns a frame with a random picture. Is there a way to call this function and get the HTML code that is hidding? (So i get the image)

Exactly i want to get a html stream from GoogleServices.js by calling:

GS_googleAddAdSenseService("ca-pub-YOU
RPUBIDHERE");
  GS_googleEnableAllServices();
  GA_googleAddSlot("ca-pub-YOURPUBIDHERE", "ADSLOT_NAME_HERE");
  GA_googleFetchAds();
GA_googleFillSlot("ADSLOT_NAME_HERE");

Upvotes: 0

Views: 735

Answers (1)

Eric Levine
Eric Levine

Reputation: 13564

An example of how Java and JavaScript can call each other using a WebView in Android can be found here: http://code.google.com/p/apps-for-android/source/browse/trunk/Samples/WebViewDemo/src/com/google/android/webviewdemo/WebViewDemo.java

Upvotes: 1

Related Questions