私のコードは以下のようなものです.FrameLayoutのlayout_heightが
android:layout_height="wrap_content"
に
android:layout_height="120dp"
レイアウトは
画像の高さが 120dp になり、縮尺が維持されることを願っています。そして、wrap_content で説明されているように、レイアウトの幅が変更されますが、元の画像のサイズに適応するだけのようです。
私に何ができる?
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_thumbnail_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@color/white" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/network_3" />
</FrameLayout>