我了解如何使用起始颜色、结束颜色等创建渐变,如下所示:-
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient
android:type="radial" android:gradientRadius="260"
android:startColor="#A74171" android:endColor="#690136"/>
</shape>
但我不明白如何带来更复杂的效果。例如:-我面临着使文本视图看起来像一个按钮的任务,它看起来在中心有点凸起,就像附加的图像一样。不使用图片,代码怎么能带来这样的效果呢?