在android中,我想shape
在文件夹中定义一个文件drawable
:myShape.xml
如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/white"/>
<corners android:radius="@dimen/corner"/>
<stroke
android:width="5dp"
android:color="@color/boder_endcall_color"/>
</shape>
我想在 中创建一个渐变边框<stroke />
,但实际上我不知道如何!所以任何人都可以举一个shape
用gradient
颜色创建的例子stroke
吗?谢谢!
编辑:我想要gradient
从#F85C5C
(红色)到#F68282
(红色)的颜色。