2012-10-31 216 views
3

我在FrameLayout中有一個ScrollView。 ScrollView有一個孩子LinearLayout。我以編程方式將ImageView添加到此LinearLayout。我希望scrollview水平滾動。ScrollView不滾動

<FrameLayout 
         android:id="@+id/imgScroll" 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:background="@drawable/avatar_block"> 

         <ScrollView 
          android:id="@+id/avatarScrollView" 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:layout_gravity="center" 
          android:fillViewport="true"> 

          <LinearLayout 
           android:id="@+id/scrollLayout" 
           android:layout_width="wrap_content" 
           android:layout_height="wrap_content" 
           android:gravity="left"> 


          </LinearLayout> 
         </ScrollView> 

         <RelativeLayout 
         android:layout_width="match_parent" 
          android:layout_height="match_parent"> 
            <!-- 2 ImageViews --> 
         </RelativeLayout> 
    </FrameLayout> 

這是怎麼了加入ImageViews(目前硬編碼的圖像繪製資源)

LinearLayout inScrollLayout = (LinearLayout) findViewById(R.id.scrollLayout); 
for(int i = 0; i < imgArray.length; i++) 
{ 
    ImageView imgView = new ImageView(this); 
    imgView.setImageResource(R.drawable.icon); 
    imgView.setPadding(0, 0, 40, 0); 
    inScrollLayout.addView(imgView); 
} 

ImageViews被添加到佈局,但最後的圖像縮小它的大小,我不能滾動。

+1

高度應該match_parent而不是wrap_content – njzk2

+0

或設置的dp值。您不應該將任何可滾動視圖設置爲wrap_content。 – AedonEtLIRA

回答