public boolean onTouchEvent( MotionEvent event , View v) {
      int action = event.getAction();
        switch(action){
        case MotionEvent.ACTION_DOWN:{
 
여기서 터치되는 곳이 xml 파일에 id 값을 test 라고 지정한 ImageView를 나타내고 싶습니다. 

         if(v.getId()==R.id.test){ }
 
그래서 이렇게 했더니, error 메세지는 없는데 터치가 안먹히네요.
이유를 알고싶어요.

                 }
        break;
        }
    
       return true;
   }