我在漸變背景中遇到麻煩。結果不是我想要的。我無法改變任何漸變。Android漸變不填充背景
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"
/>
它始終是黑白的每一種顏色。問題是什麼 ?
對不起,我編輯我的問題。我輸入了錯誤的XML標題 –