안드로이드 개발 질문/답변
(글 수 45,052)
제목그대로입니다
스크롤뷰를 넣은 레이아웃이 있는데, 마우스휠로는 움직여지나
마우스를 끌어서 위아래로 옮겨도 스크롤에 미동이 없습니다.
<ScrollView
android:layout_height="fill_parent" android:id="@+id/scroller"
android:fillViewport="true" android:orientation="vertical"
android:layout_width="fill_parent">
<LinearLayout android:id="@+id/brdinfolist_ll_05"
android:layout_width="fill_parent" android:layout_height="wrap_content"
>
<GridView
android:id="@+id/gridview" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:columnWidth="90dp"
android:numColumns="3" android:verticalSpacing="10dp"
android:horizontalSpacing="10dp" android:stretchMode="columnWidth"
/>
</LinearLayout>
</ScrollView>
XML부분입니다
layout의 height를 fill_parent로 바꿔줘봤지만....