Hi All,
In my application im trying to load a external url through
the browser intent using the code.
Intent i = new Intent(Intent.ACTION_VIEW);
Uri u = Uri.parse("http://xxx.com/");
i.setData(u);
startActivity(i);
and the url is displayed successfully. I also tried using a webview to
load the same page.
wView = (WebView) findViewById(R.id.webView);
wView.loadUrl("http://xxx.com/");
But what i need is to read the contents displayed. (ie) Just like
reading the page source of a web browser.
Is there any possibility of reading the contents displayed on the
android browser or webview. If so please help me with valuable
suggetions.
Waiting for your valuable Suggestions,
Thanks and Regards,
Steve.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---