2

我正在为多个设备开发一个 Android 2.2 应用程序,但图像有问题。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/scrollView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:contentDescription="@string/layout_empty"
            android:src="@drawable/faqs" />

    </ScrollView>

这是我在平板电脑上看到的:

在此处输入图像描述

它在我的 HTC Desire 上看起来很完美。

怎么了?

4

2 回答 2

8

添加android:scaleType="fitXY"到您的 ImageView

于 2012-08-02T16:44:13.957 回答
1

请参阅此处接受的答案。需要设置image view的layout_height为fill_parent

于 2012-08-02T16:39:54.810 回答