首先抱歉我的英文不好,我创建了XML文件,如何将我的图像与我的网格视图一起滚动,我的网格视图滚动正常,但我的图像视图不能与我的网格视图一起滚动,当我使用MOTO时g和nixes设备我的图像可见,但当我试图显示与MOTO E小屏幕设备相同时,我的网格视图无法正常工作
主要活动
xmlns:android="http://schemas.android.com/apk/res/android"
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="wrap_content"
android:layout_height="120sp"
android:src="@drawable/spr"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:scaleType="centerCrop"
/>
<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="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:layout_margin="10dp"
android:numColumns="2" />
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBar"
android:layout_centerInParent="true"
android:visibility="gone"/>
</RelativeLayout>>
</ScrollView>
图片活动
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="220sp"
android:scaleType="centerCrop"
/>
答案 0 :(得分:0)
在&#34; dp&#34;中设置ImageView高度而不是&#34; sp&#34;。