我的代码:
final WebView webView1 = (WebView)findViewById(R.id.example);
webView1.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
Intent intent = new Intent(Ads.this, General.class);
startActivity(intent);
finish();
return false;
}
});
webView1.getSettings().setJavaScriptEnabled(true);
webView1.setBackgroundColor(Color.TRANSPARENT);
StringBuilder htmlData = new StringBuilder("<html>");
htmlData.append("<head></head>");
htmlData.append("<body style='margin:0;padding:0;'>");
htmlData.append("banner from my websive with link");
htmlData.append("</body>");
htmlData.append("</html>");
webView1.loadData(htmlData.toString(),"text/html", "ISO 8859-1");
请问,我哪里有问题?
我如何启动第一个 Intent 和 browserver 窗口之后?
PS:我不知道为什么,但如果我点击 webview,intent 会同时启动 5 次。