2013-10-18 10 views
0

스크롤 선이 보이지만 작동하지 않습니다. 이것은 코드입니다.scrollView가 작동하지 않습니다. android

어떤 이유가있을 수 있습니까?

레이아웃 :

<ScrollView xmlns:tools="http://schemas.android.com/tools" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/scrollView1" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" > 

    <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="2" 
      android:gravity="center_horizontal" 
      android:orientation="vertical" > 



      <TextView 
       android:id="@+id/titleshopandsell" 
       android:layout_width="wrap_content" 
       android:layout_height="match_parent" 
       android:layout_gravity="center_horizontal" 
       android:text="פריטים שתוכל למכור" 
       android:textColor="#880000" 
       android:textSize="12sp" /> 



      <GridView 
       android:id="@+id/gridView1" 
       android:numColumns="auto_fit" 
       android:gravity="center" 
       android:verticalSpacing="3dp" 
       android:horizontalSpacing="2dp" 
       android:columnWidth="130dp" 
       android:stretchMode="columnWidth" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" > 

     </GridView> 
</LinearLayout> 
</ScrollView> 

내 코드의 문제는 무엇입니까?

답변

4

GridViewScrollView의 특수 유형입니다. 상위 scrollView를 상대/선형 레이아웃으로 변경해야합니다.

현재 scrollView와 GridView는 모두 적절한 스크롤을 방해합니다.

+0

감사합니다. 지금은 일이야! – user1932595

관련 문제