SDカードからロードした画像を画像ビューに拡大縮小したい。
問題は、SDカードからロードするたびに画像がフルスクリーンになり、他の質問に従ってすべてのパラメーターfill_parent viewbounds scaletypeなどを設定したことです。
それを行う方法は何ですか?
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/Frame"
android:layout_alignLeft="@+id/Load1"
android:adjustViewBounds="true"
android:cropToPadding="true"
android:scaleType="fitXY"
android:src="@android:drawable/alert_light_frame" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="14dp"
android:scaleType="fitXY"
android:src="@android:drawable/alert_light_frame" />
これは私のイメージ ビュー コードです