<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient android:startColor="#4CC417" android:endColor="#7C4124" android:angle="270"/>
<corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp" android:topLeftRadius="7dp" android:topRightRadius="7dp"/>
</shape>
这是我的自定义按钮xml。我想修改代码以获得两种或更多颜色。
答案 0 :(得分:2)
从startColor
到endColor
的渐变已经提供了2种颜色。可以使用android:centerColor="#hexcode"
添加中心颜色。