Android图库视图在滚动视图中 - 图库不按水平滚动

时间:2015-07-29 09:52:29

标签: android scrollview gallery

我需要将Gallery View Inside Scrollview设置为正常但在运行时它不会水平滚动

我已经像这样添加了

 <ScrollView
                android:id="@+id/scrollView1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/btnViewMore"
                android:layout_centerVertical="true" >

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical" >

                      <TextView
                android:id="@+id/txtProductGalleryTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/rlListView"
                android:layout_alignRight="@+id/rlListView"
                android:layout_below="@+id/rlListView"
                android:layout_marginTop="@dimen/ten_dp"
                android:gravity="center"
                android:text="Agriculture Produces"
                android:textSize="@dimen/twenty_sp"
                android:textStyle="bold" />

            <Gallery
                android:id="@+id/galleryProduct"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/txtProductGalleryTitle"
                android:layout_alignRight="@+id/txtProductGalleryTitle"
                android:layout_below="@+id/txtProductGalleryTitle"
                android:layout_marginTop="@dimen/ten_dp" />

1 个答案:

答案 0 :(得分:0)

来自documentations

  

ScrollView仅支持垂直滚动。对于水平滚动,请使用HorizontalScrollView

修改

查看这些可能有助于您有效实现目标的库。

DoubleViewPager

TwoWayView