RelativeLayout mRe = (RelativeLayout)findViewById(R.id.re);
        
        Bitmap testB;
        
        testB = Bitmap.createBitmap(480, 800, Bitmap.Config.ARGB_8888);
        Canvas c = new Canvas(testB);
        mRe.layout(30, 40, 200, 100);
        mRe.draw(c);
 
        ImageView iv = (ImageView) findViewById(R.id.imageView);
        iv.setImageBitmap(testB);
        iv.setMaxHeight(200);
        iv.setMaxWidth(200);
                
        iv.setOnTouchListener(this);




위와 같이 , 레이아웃을 비트탭에 넣은후 , 이미지뷰위에 다시 비트맵을 넣어서 , 하는 방식을 취했습니다.
헌데 이게 , 텍스트뷰 일때는 작동이 잘되는데

레이아웃에 적용을 시키니 , 동작하는 로그는 찍히는데 , 정작 아무 반응이 없네요..

도움 부탁드립니다.