0

我有以下HorizontalScrollView两个自定义视图。

由于某种原因它不滚动

<com.name.CustomObjects.HorizontalLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:fillViewport="true"
    android:scrollbars="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <com.name.Views.AView
            android:id="@+id/aView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <com.name.Views.BView
            android:id="@+id/bView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>

</com.name.CustomObjects.HorizontalLayout>
4

1 回答 1

0

AView 或 BView 中是否有任何内容?因为它们的宽度都设置为 wrap_content,所以 ScrollView 可能不会拉伸......?

您是否在 Horizo​​ntalLayout 中扩展了 ScrollView 类?

由于 fillViewPort="true",您的 Horizo​​ntalLayout 也可能不会拉伸

于 2012-06-19T10:08:01.580 回答