1

我尝试了下面的 xml 代码,但没有得到图像中的输出。

<item  >
    <shape>
        <gradient
           android:startColor= "#AE845c"
           android:endColor="#935Fc0"

             />


    </shape>
</item>

我想要这样。

在此处输入图像描述

4

3 回答 3

2

尝试添加角度

<item  >
    <shape>
        <gradient
           android:angle="90"
           android:startColor= "#bc9b78"
           android:endColor="#7c4727"

             />


    </shape>
</item>

如果它不起作用,请将代码放在您使用它的地方。

于 2012-12-21T06:43:37.643 回答
2

使用 android 类型和角度进行渐变。根据您的要求将角度值从 0 更改为 360。

android:type="linear"
android:angle="0"
于 2012-12-21T06:45:01.260 回答
0
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape="rectangle">
     <stroke android:width="2dp" android:color="#FFFFFFFF" />
       <gradient android:startColor="#FFFFFFFF" android:endColor="#FFFFFFFF"
            android:angle="225"/> 

    <corners android:bottomRightRadius="5dp" android:bottomLeftRadius="5dp"
     android:topLeftRadius="5dp" android:topRightRadius="5dp"/>
</shape> 

你可以试试这个...

于 2012-12-21T07:08:17.257 回答