Maybe just create an HttpURLConnection to the URL? There's an example here:
*http://developer.android.com/reference/java/net/HttpURLConnection.html* It says: * URL url = new URL("http://www.android.com/");* * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();* * try {* * InputStream in = new BufferedInputStream(urlConnection.getInputStream());* * readStream(in);* * finally {* * urlConnection.disconnect();* * }* * }* Thanks. On Tuesday, May 7, 2013 8:04:04 AM UTC-5, ANKUR1486 wrote: > > Hi all , > > > how can we get the webview contents > > urgent pls help > > thanks > -- -- 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 --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

