我正在尝试使用图像创建一个按钮,并为此添加事件处理。 但是,在添加突出显示的代码时出现了一些错误(点击此链接时请参阅第二张图片Code)
图片1:错误 图2:java代码 图3:xml代码
提前谢谢你。 如果您想了解更多信息,请与我们联系
答案 0 :(得分:0)
就这样做
首先删除行 // int buttonid line
并替换
imageButton=(ImageButton)findViewById(buttonid);
与
imageButton=(ImageButton)findViewById(R.id.imageButton1);
当你已经在xml
中设置了drawable图像时,你不需要设置它答案 1 :(得分:0)
在buttonId变量中未正确设置按钮,请执行以下操作:
imageButton = (ImageButton) findViewById(R.id.imageButton1)
还请在此处发布您的代码