1

我有一个比屏幕大的 LinearLayout。我想水平滚动它。我有下一个代码,但它不起作用。有谁能够帮助我?

<HorizontalScrollView
    android:id="@+id/horizontalScrollView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:id="@+id/gm_movimientos"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:orientation="horizontal" >

    </LinearLayout>
</HorizontalScrollView>
4

1 回答 1

3

您的 Horizo​​ntalScrollView 宽度需要设置为 match_parent 或固定大小。现在 ScrollView 正在扩展到与 LinearLayout 相同的尺寸(即,它的边界也在屏幕之外)。

于 2012-10-04T14:33:55.453 回答