다이얼로그 안쪽은 View자체가 ScrollView로 되어있습니다.

ViewFlipper를 사용하여 다음 화면으로 전환하고 싶은데...

Ontouch모드가 전혀 안먹힙니다.

ScrollView를 setFocusable(false); 이렇게 포커스를 빼앗아도 ScrollView를 포함한 뺀 나머지 만 touch가 되는 상태입니다.

전 스크롤 뷰까지 touch가 되서 ViewFlipper()를 사용하고 싶은데...

고슈님들....어떻게 해야하는지 알려주시면 감사하겠습니다.ㅠㅠ

지금 밑에 코드에서 보면 이미지 뷰와, 텍스트 등이 스크롤로 쌓여있는데.. 이상태에서 이미지, 텍스트를 왼쪽에서 오른쪽으로 터치를 주면...

화면이 전환되는 형식으로 할려고 합니다.

<ScrollView android:id="@+id/ScrollView01" 
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent" 
                xmlns:android="http://schemas.android.com/apk/res/android">  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical" 
    android:scrollbarAlwaysDrawVerticalTrack="true"
    android:id="@+id/key_view" >
 
         <ImageView android:id="@+id/keyimg"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:layout_width="430px"
            android:layout_height="300px"
            android:maxWidth="430px"
            android:maxHeight="300px"
            android:gravity="center"/>
      
      <TextView android:id="@+id/keyCate"
        android:layout_width="wrap_content"
           android:layout_height="wrap_content"
              android:layout_gravity="left"/>
              
                             ............
                             ............ 
</LinearLayout>
</ScrollView>