我有以下java代码:
message.setTag("_message");
多次运行,分配了不同的消息。
当我
message.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
View message = layout.findViewWithTag("_message");
switch (motionEvent.getAction()) {
case MotionEvent.ACTION_DOWN:
message.setBackgroundColor(Color.YELLOW);
break;
case MotionEvent.ACTION_UP:
message.setBackgroundColor(0x00000000);
break;
}
return false;
}
});
只有第一条消息会突出显示。如何突出显示所有消息?