抱歉,错误是另一个错误。它在ImageButton中。但问题现在已经解决了。 这就是我为R.id.none改变它的原因。但是当我为正确的名称更改它时,我认为它不会运行但它会运行。很奇怪。
imgbutton = (ImageButton) findViewById(R.id.none);
imgbutton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Toast.makeText(Insertarlugar.this, "ImageButton is clicked!",
Toast.LENGTH_SHORT).show();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.insertarlugar, menu);
return true;
}
}