我有一个 8000 像素长的图像,我想水平滚动。当我将图像作为 ImageView 插入到 HorizontalScrollView 并在物理设备(Samsung Galaxy nexus)上运行时,滚动条提示图像已加载,但没有显示图像。一切都在 android xml 查看器中正确显示。这是我的水平滚动视图的 xml:
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_below="@+id/TableRow01"
android:scrollbars="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="14dp"
android:src="@drawable/longimage" />
</LinearLayout>
</HorizontalScrollView>
我曾尝试将图像包装在其他几种布局中并单独包装,但在设备上没有任何效果。提前致谢。