0

HorizontalScrollView私は2つのカスタムビューで以下を持っています。

どういうわけかスクロールしません

<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 に答える