我有一张大图,我试图让我的用户查看。我还想在以后在图片上添加按钮,以便他们获得有关某些地图点的更多信息。
我的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的大图片,并在其他方面打开。