I'm in trouble with gradient background. Result is not what I want. I cannot change anything on gradient.
shadow.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>
color.xml
<color name="holo_green_dark">#ff669900</color>
<color name="holo_orange_dark">#ffff8800</color>
item.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"
/>
Result https://dl.dropbox.com/u/52627369/gradient.png
It is always black and white for every color. What is the problem ?

