2011-06-14 92 views
3

我的應用程序包含不同的佈局。其中一個是線性layout.it的內容是動態添加。我想要使這個佈局水平滾動。爲此,我把我的佈局在滾動view.but它仍然不是滾動......如下是我的代碼如何使線性佈局水平滾動

<LinearLayout android:id="@+id/scoreballparent_layout" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" 
    android:layout_width="fill_parent" 
    android:layout_above="@+id/score_layout"> 
    <ScrollView android:layout_height="wrap_content" 
    android:id="@+id/scrollView1" 
    android:layout_width="fill_parent" 
    > 
     <LinearLayout android:layout_width="fill_parent" 
     android:id="@+id/scoreball_layout" 
     android:layout_height="wrap_content" 
     android:isScrollContainer="true" 
     android:scrollbars="horizontal"> 

     </LinearLayout> 
    </ScrollView> 
</LinearLayout> 
+0

考慮到,如果內容在屏幕配合,則滾動條將不會出現。 – 2011-06-14 13:19:02

回答

8

使用HorizontalScrollView代替

而且你的佈局將成爲scrollabe其contect後不適合佈局區域。

+0

謝謝...但1件事..它顯示滾動條,而滾動。我想顯示該..並且我想自動滾動佈局時添加新的東西到這個佈局..你可以幫我plz .. – 2011-06-14 13:42:08

0

只需使用XML格式 android:fadeScrollbars="true"可能是你的作品