我刚开始学习android编程。在尝试编译器正在抱怨的事情时:
Button button1main = (Button) findViewById(R.id.Button01mainOk);
button1main.setOnClickListener(new onClickListener() {
public void onClick(View v)
{
//Blah
});
编译器抱怨The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (new onClickListener(){})
,但我检查了Google
的示例,我发现其中有几个使用与上面相同的内容。
答案 0 :(得分:2)
尝试,
Button button1main = (Button) findViewById(R.id.Button01mainOk);
button1main.setOnClickListener(new View.onClickListener() {
public void onClick(View v)
{
//Blah
});
我总是喜欢这样,但不是100%问题就是这个。