ImageView不会填满整个宽度

时间:2012-08-02 15:11:01

标签: android android-layout

我正在为多个设备开发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>

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

enter image description here

我的HTC Desire看起来很完美。

有什么问题?

2 个答案:

答案 0 :(得分:8)

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

答案 1 :(得分:1)

查看已接受的答案here。需要将图像视图的layout_height设置为fill_parent