android图像视图大小不随图像缩放

时间:2011-06-11 04:24:15

标签: android android-layout

我有以下android布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainTopLevel"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
>
    <ImageView
        android:id="@+id/orbitImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:scaleType="fitStart"
        android:src="@drawable/earthorbit"
        android:padding="0dp"
        android:background="@android:color/white"
    />
    <TextView
        android:id="@+id/positionDesc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minHeight="40dp"
        android:layout_below="@id/orbitImage"
        android:text="should appear below image"
   />
</RelativeLayout>

图像缩小了很多,但由于保持纵横比,它只占用屏幕的上半部分。

问题是图像视图本身具有原始高度,它占据整个屏幕并且文本永远不会显示。

(因此原始图像约为620 X 430,缩放图像约为250 X 200,但图像视图约为250 X 430)

有没有办法让图像视图的大小与图像的缩放尺寸完全匹配?

2 个答案:

答案 0 :(得分:11)

看起来类似于这个问题:Android ImageView size not scaling with source image,解决方案是将android:adjustViewBounds="true"添加到ImageView

答案 1 :(得分:0)

由于图片文件在资源中修正了尺寸,因此没有理由不能在ImageView上修复高度:android:layout_height="200dp"