我遇到了渐变背景的问题。结果不是我想要的。我无法在渐变上更改任何内容。
影子.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="0"
android:endColor="@color/holo_orange_dark"
android:startColor="@color/holo_green_dark" />
</shape>
颜色.xml
<color name="holo_green_dark">#ff669900</color>
<color name="holo_orange_dark">#ffff8800</color>
项目.xml
<View
android:layout_width="fill_parent"
android:layout_height="10dp"
android:layout_alignBottom="@+id/term"
android:layout_alignLeft="@+id/term"
android:background="@drawable/shadow"
/>
每种颜色总是黑白的。问题是什么 ?