1

我有一个 LinearLayout,我在其中设置了这样的背景:

android:background="@drawable/bg_splash"

我的drawable是这样设置的

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
       <bitmap android:gravity="center" android:src="@drawable/bg_splash"/>
    </item>
</selector>

我现在的问题是图像没有被调整到屏幕大小。我希望它变小一点,因为它的尺寸为 1280x797

我怎样才能做到这一点?

4

1 回答 1

-1

可能的解决方案可能是改用RelativeLayout 并将imageView 设置为您的xml 中填充RelativeLayout 的第一个视图。然后把这张图片放到imageView中并声明

   android:scaleType="centerInside". 
于 2013-06-19T11:44:33.123 回答