I am looking for ways to speed up WebView loading and I came across WebSettings.setBlockNetworkLoads() which is described very briefly in the documentation:

Tell the WebView to block all network load requests.

But it's unclear to me what "all network load requests" mean.

Does it block loading images, like setBlockNetworkImage() does?

Does it block other things? (if so, what does it block?)

link|improve this question

I would just try using it and see what happens. Run ACID or Kongregate to see if it blocks JavaScript or Flash or everything. – notverycreative Jul 20 '11 at 19:38
1  
@notverycreative That's a very creative answer, and I am about to start experimenting with this, but I am looking to understand the terminology as well. I have a feeling that "network load requests" has special meaning among web experts. (I am not such an expert) – ef2011 Jul 20 '11 at 20:00
feedback

3 Answers

up vote 1 down vote accepted

According to this code sample it means "preventing WebView from loading external resources over the network".

I interpret this as allowing to load resources locally (cache, memory) but not over the network, not even a URL that you explicitly specify.

So, just as you observed, it will block everything, including images.

link|improve this answer
If it blocks everything, why is it recommended as a replacement to setBlockNetworkImage()? Can you provide a use example? – ef2011 Jul 27 '11 at 18:13
feedback

I have never used that particular setting but without any further context I would think that it means the WebView .load methods.

WebView.loadData(String data, String mimeType, String encoding);
WebView.loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl);
WebView.loadUrl(String url);
WebView.loadUrl(String url, Map<String, String> extraHeaders);
link|improve this answer
+1 for the 1st attempt to answer this question. I just tried setting WebSettings.setBlockNetworkLoads(true) and NOTHING is being loaded from the URL specified, not even HTML! Which means that you are probably right, but then why would Google recommend using this method instead of setBlockNetworkImage()? – ef2011 Jul 20 '11 at 20:41
feedback

It is used to prevent the WebView from loading other pages. So if you need to display a page but not allow any links clicked within the loaded page, then use this.

Load the page, then set this flag to true for this to work.

I think!

link|improve this answer
+1 for the 2nd attempt to answer this question. It's interesting to see that no one is really sure about an answer. What does this say about the documentation? LOL – ef2011 Jul 20 '11 at 21:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.