将ImageView中的图像缩放到父级的宽度并相应地缩放高度

时间:2014-12-31 09:42:25

标签: android xml image imageview scale

将所有内容放在一个文件中,以及代码和结果更清晰:

2 个答案:

答案 0 :(得分:1)

试试这个..

<ImageView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="false"
    android:background="@drawable/image1"/>

修改

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="2"
    android:gravity="right" >

   <ImageView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:adjustViewBounds="false"
    android:layout_gravity="right"
    android:layout_weight="1"
    android:background="@drawable/ic_launcher"/>

</LinearLayout>

<强> EDIT2

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="right"
    android:orientation="vertical"
    android:weightSum="10" >

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@drawable/ic_launcher" />


</LinearLayout>

答案 1 :(得分:0)

将图像视图的宽度放到&#34; fill_parent&#34;。 它也解决了你的问题。