我有一个标准的webview应用程序无法加载2.3.6安卓版。 我用户的代码如下
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setIntegerProperty("splashscreen", R.drawable.screen);
this.clearCache();
this.clearHistory();
if (isNetworkAvailable())
super.loadUrl("https://url/index.html");
else
super.loadUrl("file:///android_asset/www/noconnection.html"); }
它加载启动画面,然后只显示空白屏幕。有什么想法吗?
答案 0 :(得分:0)
问题实际上与ssl有关。我正在加载https并且必须在代码中接受ssl证书。见这里:http://antonylees.blogspot.gr/2012/11/how-to-bypass-ssl-certificate-checking.html