实际视图的高度不适合正确的内容

时间:2011-06-01 09:27:46

标签: android imageview scale

我有一个ImageView,它显示来自资源的图像。 ImageView的widht是固定的(60dp)。高度设置为wrap_content。 调整图像大小以适应此宽度(节省纵横比 - 这是完美的)

问题是android在调整大小之前将实际高度设置为图像的高度。但是我希望这个图像的宽度正好为60dp,调整后高度应该等于图像的高度。

这是布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <ImageView  
        android:layout_width="60dp" 
        android:layout_height="wrap_content" 
        android:src="@drawable/sample"
        android:background="#F0F0"/>
</LinearLayout>

enter image description here

3 个答案:

答案 0 :(得分:1)

解决方案非常简单,我刚为ImageView代码添加了属性android:adjustViewBounds="true"

答案 1 :(得分:1)

尝试android:adjustViewBounds =“true”

答案 2 :(得分:0)

有两种解决方案

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <ImageView  
        android:layout_width="60dip" 
        android:layout_height="wrap_content" 

        android:background="@drawable/thumb"
        android:adjustViewBounds="true"/>
</LinearLayout>