mSwitcher = (ImageSwitcher) findViewById(R.id.ImageSwitcher01);
  mSwitcher.setFactory(this);
  mSwitcher.setInAnimation(AnimationUtils.loadAnimation(this,
          android.R.anim.fade_in));
  mSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,
          android.R.anim.fade_out));              

사진이 바뀌는건 gallery를 이용했어요.
imageswitcher에서 사진을 띄웠는데요.. 사진을 클릭할때 클릭한 사진을 다른 layout으로 옮겨주고 싶어서요 어떻게 하면 좋을까요?