Android Horizo​​ntalScrollView不会滚动

时间:2012-06-19 10:01:44

标签: android xml horizontalscrollview

我有以下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>

1 个答案:

答案 0 :(得分:0)

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

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

由于fillViewPort =“true”,你的Horizo​​ntalLayout也可能无法拉伸