mRLayout = (RelativeLayout) this.findViewById(R.id.T_TransMission); 

  mRLayout.setOnTouchListener(this);

로 RelativeLayout을 터치한경우 다른 액티비티가 실행되도록 해뒀는데요

RelativeLayout안에 있는 EditText나 ImageView들 위에서는 적용이 안되더군요

그렇다고 모든것에 setOnTouchListener를 걸어주기엔 소스가 길어지고...

그 Layout안의 모든것에게 적용되는 간편한 방법은 없을까요?