如何使线性布局水平滚动

时间:2011-06-14 13:10:56

标签: android android-linearlayout horizontal-scrolling

我的应用程序包含不同的layouts.one是一个线性layout.it的内容是动态添加。我想使这个布局水平滚动。为此我已将我的布局放在滚动视图中。但它仍然不滚动......下面给出的是我的代码

 <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>

2 个答案:

答案 0 :(得分:8)

使用HorizontalScrollView代替

在内容无法适应布局区域后,您的布局也会变得可滚动。

答案 1 :(得分:0)

只需在xml中使用它 android:fadeScrollbars="true"可能对您有用