我需要将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" />