标签:android style class blog code java
在网上搜了大半天,也没能找到出现该警告的确切原因。通过测试发现,如果不加载url就不会出现该警告。突然间有个想法,莫非是跟页面中的html代码有关?
可是,页面是个静态html 页面,只包含几行最基本的代码呀!后来测试加载其他的页面,问题依久重现。可见出现异常的原因跟html页面没有关系,等回头有时间了
再仔细研究一下,问题先放在这吧。。。。。
public View onCreateView(android.view.LayoutInflater inflater, android.view.ViewGroup container, android.os.Bundle savedInstanceState) { View v = inflater.inflate(R.layout.inject_webview, null); webview = (WebView)v.findViewById(R.id.webView1); webview.loadUrl("http://10.0.111.196:1946/test"); v.findViewById(R.id.button1).setOnClickListener(this); //initialWebviewSetting(); return v; }
Android 使用Webview时,有时抛 java.lang.Throwable: EventHub.removeMessages(int what = 107) warning
标签:android style class blog code java
原文地址:http://www.cnblogs.com/coolasm/p/3791285.html