布局中的页眉放置不正确

时间:2011-12-24 20:52:35

标签: android xml layout header

我有一个大的标题图片,我想用于平板电脑设备和手机。平板电脑上的图像看起来不错,但在手机上查看时看起来像这样: enter image description here

这是我的布局XML:

<?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"
   android:background="@color/white"
   >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/searchresults_header" />

    <ListView
        android:id="@+id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />


</LinearLayout>

如何在两种屏幕尺寸上正确缩放此标题图像?

2 个答案:

答案 0 :(得分:1)

您的图片会自动调整大小,但视图将保持原样。

将此添加到您的ImageView,您应该看到差异:

android:adjustViewBounds="true"

答案 1 :(得分:0)

不记得哪一个,但尝试这些scaleType param values