大家好,我想调整样式的图像背景大小,我有一个使用该样式并显示背景图像的图像视图
风格:
<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>
谢谢