찾아봤는데 편법이거나.. 원하는 내용이 나오지 않아 질문 드립니다.

  
 <ScrollView
        android:id=""
        android:layout_width=""
        android:layout_height=""
        android:layout_marginTop=""
        android:layout_centerHorizontal="true"
        android:overScrollMode="never"
        >
        
        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="0px"
            android:layout_marginLeft="0px"
            android:background="#00000000"
            >         
            
        <ImageView
            android:id=""
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_centerHorizontal="true"
            android:scaleType="centerInside"
            android:src="            
           />   
           
        <LinearLayout
            android:id="
            android:layout_width=""
            android:layout_height=""
            android:layout_marginTop=""
            android:layout_centerHorizontal="true"
            android:background="#00000000"
            />
    
         </RelativeLayout>
        
    </ScrollView>     



대략 이런 형식으로 xml을 구성하였습니다.

여기서 스크롤은 우측 스크롤 바 도 숨겻고,  상하 이동은 smoothScrollTo를 통한 버튼 이동을 하고있습니다.

하여 해당 스크롤뷰 영역의 터치로 인한 이동은 필요가 없어졌습니다.

그래서 빼려하는데.. 편법으로 스크롤뷰영역의 터치이벤트를 훔쳐 true로 반환하여 막는 방법이 있다는 글을봤는데요..

그러기에는 액티비티 클래스에서 LinearLayout에 addView를 해주어 해당영역에서 터치이벤트(그리기 영역)을 잡고있어서요..

그래서 스크롤뷰 영역에서 터치를 막으면 LinearLayout 영역의 터치까지 영향을 주어 그리기 이벤트를 막을까 하여..

xml 단에서 에초에 스크롤 뷰의 스크롤 기능을 막아주는 방법을 알고싶기에 (혹은 다른방법) 질문드립니다..

뭐.. android:스크롤기능 ="false" 이런게 있으면 좋겟는데...

이에 관한 정보를 알고계시거나 길을 알려주실분들 꼭 좀 답변 부탁드립니다.