我在Android中创建Scroll网格视图一个图像视图,只有我的网格视图滚动但我的图像没有滚动。
滚动网格视图时如何滚动图像?
这是我的XML代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="80sp"
android:src="@drawable/fddf"
/>
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/image"
android:columnWidth="90dp"
android:verticalSpacing="0dp"
android:horizontalSpacing="0dp"
android:stretchMode="columnWidth"
android:numColumns="2" />
</RelativeLayout>>
</ScrollView>
</RelativeLayout>