super.onCreate(savedInstanceState);
  // main.xml 추가
  LayoutInflater inflate = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  LinearLayout mRoot = (LinearLayout) inflate.inflate(R.layout.guide, null);
  main = (LinearLayout)View.inflate(this, R.layout.main, null);
  hs = (HorizontalScrollView)main.findViewById(R.id.horizontalScrollnevi);
  
  mRoot.addView(main);
  setContentView(mRoot);
  Log.i("CC","2페이지 로드");
  gestureScanner = new GestureDetector(this);

 }

main.xml을 추가 했습니다.

 

그런데 처음에 화면이 나올 때 같이 나오는 것이 아니라

 

터치 하면 나오고 또 터치하면 안나오고 이렇게 하고 싶은데

 

가능하나요?! ㅜㅜ