我的图像高度约为 2000dp。我想在 ImageView 中显示它,它可以滚动到它的高度。我写了以下 xml 文件,它在设备上运行良好,但在 HTC one X、三星 Galaxy S4 等设备上运行良好,我认为这是大屏幕移动设备的问题,谁能帮帮我。我会非常感谢他/她。
<ScrollView
android:layout_width="fill_parent"
android:layout_height="2000dp"
android:layout_below="@+id/total"
android:scrollbars="vertical" >
<FrameLayout
android:id="@+id/relativeLayout"
android:layout_width="fill_parent"
android:layout_height="2000dp" >
<RelativeLayout
android:id="@+id/upperRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</RelativeLayout>
<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/dayview_bg" />
<ImageView
android:id="@+id/image2"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="@android:color/white"
android:scaleType="fitXY" />
</FrameLayout>
</ScrollView>