图片没有显示在scrollview中的android imageview中

时间:2012-09-13 01:56:55

标签: android imageview

我有一张大图,我试图让我的用户查看。我还想在以后在图片上添加按钮,以便他们获得有关某些地图点的更多信息。

我的XML如下:

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:scrollbars="none">
<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/map_image"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/map_1280" />

</RelativeLayout>

我使用相对布局作为直接子项的原因是稍后放置按钮。我遇到的问题是图像没有显示出来。它与背景颜色相同。但是,在我得到指示滚动视图结束的光晕之前,我可以向左和向右滚动一点。但是,我看不到这张照片。

我还将此添加到Java中,以防万一:

setContentView(R.layout.map_view);
ImageView mapView = (ImageView)findViewById(R.id.map_image);
mapView.setImageResource(R.drawable.map_1280);

仍然没有。难道我做错了什么?图像打开很好,没有什么打破它。它是一张2000 * 1280的大图片,并在其他方面打开。

1 个答案:

答案 0 :(得分:1)

有几种方法可以做到这一点。以下链接可以帮助您。 Link 1 Link 2 Link 3