ImageView没有在android中显示Horizo​​ntalScrollView内部

时间:2013-03-04 17:05:17

标签: android imageview scrollview horizontalscrollview

我有一个8000像素长的图像,我希望水平滚动。当我将图像作为ImageView插入到Horizo​​ntalScrollView并在物理设备(Samsung galaxy nexus)上运行时,滚动条表示图像已加载,但没有显示图像。一切都在android xml查看器中正确显示。 这是我的horizo​​ntalScrollView的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>

我已经尝试将图像包装在其他几个布局中并且单独使用,但设备上没有任何工作。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以将imageView的参数更改为match_parent。