画像 (629x470 ピクセルの image1) を相対レイアウトで表示し、別の完全な白い画像 (1896x470 ピクセルの image2) を使用して image1 をスクロールし、image1 を非表示/表示したいと考えています。
私のimage1は正しく表示されています。しかし、image2 は自動的に小さいバージョンにサイズ変更され、image1 の垂直方向の中央に配置されるため、image1 を完全に隠すことはできません。image1 を完全に覆うように image2 を表示するにはどうすればよいですか? 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>
提案してください。