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