我使用隨機顏色在color.xml文件由整數數組我cardview背景漸變色的整數數組的Android
color.xml:
<item name="Gold" type="color">#FFFFD700</item>
<item name="Orange" type="color">#DSADSA</item>
<item name="LightSalmon" type="color">#EWQ5645W</item>
<integer-array name="androidcolors">
<item>@color/Gold</item>
<item>@color/Orange</item>
<item>@color/LightSalmon</item>
</integer-array>
,但我想漸變色爲我的背景和我想這:
<integer-array name="androidcolors">
<item><gradient android:endColor="@color/blue" android:startColor="@color/darkblue" /></item>
</integer-array>
它不工作,我搜查任何地方,我認爲沒有身體用這個:|你能幫助我如何在整數數組或color.xml文件中使用漸變嗎?
thx但我想要一個代碼爲許多漸變顏色 –
創建另一個可繪製和添加整數數組內 –
閱讀此鏈接瞭解更多關於漸變顏色http:// www。 singhajit.com/gradient-color-in-android/ –