1

大家好,我想调整样式的图像背景大小,我有一个使用该样式并显示背景图像的图像视图

风格:

 <style name="Background">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">50dp</item>
        <item name="android:orientation">horizontal</item>
        <item name="android:background">@drawable/img_background</item>
    </style>

所以我有“img_background”,它的大小约为 1920 * 1080,我想完美地调整它的大小,使其适合所有设备大小,如何让它根据屏幕大小自动调整大小?,因为它不起作用无法正确显示图像是一种偏离,并且没有正确调整大小以适合屏幕。

我有一个具有样式的 LinearLayout,然后是其中的 Image 视图。它不适合 1920*1080,例如在 800*480 分辨率下,它被裁剪掉并且没有整齐地调整大小

<LinearLayout

            style="@style/Background"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" 
            >





            <ImageView

                android:contentDescription="@null"
                android:layout_marginBottom="8dip"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dip"
                android:layout_marginTop="8dip"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:clickable="false"
                android:paddingLeft="15dip"
                android:src="@drawable/img_background"
                />

        </LinearLayout>

谢谢

4

2 回答 2

0

删除样式LinearLayout

把它作为你的 imageView:

<ImageView
  android:contentDescription="@null"
  android:layout_marginBottom="8dip"
  android:layout_marginLeft="8dp"
  android:layout_marginRight="8dip"
  android:layout_marginTop="8dip"
  android:layout_width="fill_parent"
  android:layout_height="50dp"
  android:clickable="false"
  android:paddingLeft="15dip"
  android:scaleType="centerInside"
  android:src="@drawable/img_background" />
于 2013-06-04T13:40:53.273 回答
0

更改您的 xml 的 layout_width 和 layout_height

<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
于 2013-06-04T13:44:42.270 回答