程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> an d-安卓的一個小問題 OnClickListener 在線等

an d-安卓的一個小問題 OnClickListener 在線等

編輯:編程綜合問答
安卓的一個小問題 OnClickListener 在線等

報的錯誤是

 The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (MainActivity.mClick)
 ------------------------------------
 The type MainActivity.mClick must implement the inherited abstract method DialogInterface.OnClickListener.onClick(DialogInterface, int)

代碼是比這書上敲的 很簡單

 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txt = (TextView) findViewById(R.id.shishi);
        button = (Button) findViewById(R.id.button);
        button.setOnClickListener(new mClick());
    }

    class mClick implements OnClickListener {
        public void onClick(View v) {
            MainActivity.this.setTitle("改變標題");
            txt.setText(R.string.Str1);
        }
    }

最佳回答:


1、是否引入了
import android.view.View;
import android.view.View.OnClickListener;

2、是否在strings.xml中增加了R.string.Str1
3、是否編譯了

danielinbiti
qq291808022
danielinbiti
qq291808022
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved