Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
362 views
in Technique[技术] by (71.8m points)

android WebView internet access problem, because of proxy?

Here is my problem:

Emulator(Android 2.2) is able to access internet through browser. (I am behind a proxy so i set the proxy first)

but when i create a webview app, seems like it can not access the internet by webview.

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

is set up. So I am afraid it's because of the proxy.

Any clue ? Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try adding In OnCreate()

WebView.enablePlatformNotifications();

And adding the following permissions to the manifest

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>

This should enable your webview to access the proxy info it needs. You may need to restart your emulator (hopefully not).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...