我的代码:
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和浏览器窗口之后?
PS:我不知道为什么,但如果我点击webview,意图将同时启动5次。
答案 0 :(得分:0)
尝试使用此代码
webView1.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_DOWN){
Intent intent = new Intent(Ads.this, General.class);
startActivity(intent);
finish();
}
return true;
}
});