我正在尝试更改手势事件中图像视图的背景但我收到错误 - 表达式预期,或者)
以下是给我提问的代码
@Override
public boolean onSingleTapConfirmed(MotionEvent e) {
if (currentEvent == Event.single_tap) {
mainMessage.setText("tap me twice");
TopLeftArrow.setBackground(#000000);
currentEvent = Event.double_tap; //set to next desired event
return true;
}
return false;
}
错误显示在
行TopLeftArrow.setBackground(#000000);
答案 0 :(得分:1)
你不能像这样给出背景色
TopLeftArrow.setBackground(#000000);
正确的方法是这个
TopLeftArrow.setBackgroundColor(Color.parse("#000000"));