0

私のコードは以下のようなものです.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>
4

1 に答える 1

0

layout_widthlayout_heightをそれぞれ 120dp に指定してみてはどうでしょうか。以下のように

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/item_thumbnail_container"
 android:layout_width="120dp"
 android:layout_height="120dp"
 android:layout_gravity="center"
 android:background="@color/black" >
 <ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/ic_launcher" />
</FrameLayout>
于 2012-11-16T01:16:23.103 に答える