我试图在布局中显示重复的背景。当我使用位图资源时,它只能使用一个图像。所以,我在所有屏幕上都有相同尺寸的照片(在我的情况下为48x48)。但我想显示图像取决于屏幕大小,就像我们在启动器图标中所做的那样。我在mipmap文件夹中有五个图像,我该如何使用这些图像? 以下是我的代码,
res / drawable / repeated_background.xml
<resources>
<bitmap
xmlns:android=http://schemas.android.com/apk/res/android
android:src="@drawable/background_img.png"
android:tileMode="repeated"/>
</resources>
res / layout / activity.xml
<RelaytiveLayout
............
android:background="@drawable/repeated_background"
..........>