1.WebView
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=98669
希望点击连接是由自己处理,而不是新开系统browser中响应该链接,要给WebView添加一个事件监听对象,并重写shouldOverviewUrlLoading方法
2.WebView删除缓存
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=102086
调用:clearCacheFolder(xxxxxActivity.getCacheDir(), System.currentTimeMillis());//删除此时之前的缓存.
3.WebView加载时显示对话框
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=152916
关键是设置setWebChromeClient onProgressChanged
4.与javascript交互
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=113162
纠正:文章中代码多重复复制了一遍. document.getElementByIdx_x("droid")改document.getElementById("droid")