获取android中给定标签的所有元素

时间:2015-02-15 00:30:01

标签: android

我有以下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;
        }

    });

只有第一条消息会突出显示。如何突出显示所有消息?

0 个答案:

没有答案