MotionEvent getActionIndex()始终是ACTION_DOWN

时间:2014-02-20 15:55:34

标签: android

您好我试图在我的一个视图上使用setOnClickListener。

我的问题是我总是得到ACTION_DOWN索引。

我检查过它主要是因为你需要在onTouch中返回true。但我回归真实,我仍然没有得到其他索引。

这是我的代码:

@Override
    public boolean onTouch(View arg0, MotionEvent arg1) {
        // TODO Auto-generated method stub

         switch (arg1.getActionIndex()) 
            {

                case MotionEvent.ACTION_DOWN:
                {

                    Log.i("test", "down");

                    return true;
                }

                case MotionEvent.ACTION_UP: {

                    Log.i("test", "up");

                    return true;
                }

                case MotionEvent.ACTION_MOVE: {

                    Log.i("test", "move");

                    return true;
                }
            }
        return true;
    }

1 个答案:

答案 0 :(得分:2)

您应该getAction()而不是getActionIndex()getAction()确实会返回正在执行的操作类型。