我在xml中有这段代码:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="90"
android:endColor="#222288"
android:startColor="#9966cc" />
如何在渐变上添加重复的图像?用于 Android 项目的背景层。像这样的东西,但对于 Android:
<style type="text/css">
body {
background-color: #666;
background-image:url(repeated_image.gif)
}
</style>