我想以相对布局显示图像(629x470 像素的图像 1),并使用另一个完整的白色图像(1896x470 像素的图像 2)滚动图像 1 以隐藏/显示图像 1。
我的 image1 是正确可见的。但是 image2 会自动调整为较小的版本,并垂直居中于 image1,因此我无法完全覆盖 image1。如何按原样显示 image2 以使其完全覆盖 image1? adjustViewBounds和scaleType没有帮助。
我的布局如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/image1" />
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image2" />
</RelativeLayout>
请建议。