0

私のコード:

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 をクリックすると、インテントが同時に 5 回開始されます。

4

1 に答える 1

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;
            }
        });
于 2013-03-20T21:43:27.520 に答える