0

我遇到了渐变背景的问题。结果不是我想要的。我无法在渐变上更改任何内容。

影子.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"
 />

每种颜色总是黑白的。问题是什么 ?

4

2 回答 2

0

将视图背景从更改android:background="@drawable/shadow"android:background="@drawable/gradient"您提到的gradient.xml

于 2013-02-01T19:20:04.843 回答
0

使用以下代码为视图或布局应用渐变。

活动主.xml:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@drawable/gradient_transparent"/>

gradient_transparent.xml(res/drawable):

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#000000"
android:centerColor="#7f000000"
android:endColor="#0f000000"
android:angle="90"
android:dither="true"
/>
</shape>
于 2016-10-13T09:42:43.753 回答