The type new View.OnClickListener(){} must implement the inherited abstract method View.Onclicklis 5
在Eclipse中编写privateOnClickListenerstartListener=newOnClickListener(){publicvoidOnClick...
在Eclipse中编写private OnClickListener startListener=new OnClickListener() {
public void OnClick(View v){
………………………………………………………………………………………………
}
};
怎么指出The type new View.OnClickListener(){} must implement the inherited abstract method View.OnClickListe 这个错误?是哪里出问题了 展开
public void OnClick(View v){
………………………………………………………………………………………………
}
};
怎么指出The type new View.OnClickListener(){} must implement the inherited abstract method View.OnClickListe 这个错误?是哪里出问题了 展开
4个回答
展开全部
可以换种方式写,这样就可以了
public class MainActivity extends Activity {
protected Button startBrew = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
startBrew = (Button) findViewById(R.id.brew_start);
startBrew.setOnClickListener(new StartButtonListener());
}
class StartButtonListener implements android.view.View.OnClickListener {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
findViewById(R.id.textView0).setBackgroundColor(Color.BLUE);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
public class MainActivity extends Activity {
protected Button startBrew = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
startBrew = (Button) findViewById(R.id.brew_start);
startBrew.setOnClickListener(new StartButtonListener());
}
class StartButtonListener implements android.view.View.OnClickListener {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
findViewById(R.id.textView0).setBackgroundColor(Color.BLUE);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import android.view.View;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我也遇到了同样的问题,等我解决了再告诉你,或者你可以告诉我,呵呵~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询