It is easy to achieve the below gradient at left using standard start, center, and end colors in a radial gradient with android in which the start = yellow, center = purple, and end = blue. The circle at right however requires the repositioning of the center color. Is this possible?

The result at left can be reproduced with something like:
<shape android:shape="oval">
<gradient
android:endColor="#0000ff"
android:gradientRadius="my_radius"
android:centerColor="#770077"
android:startColor="#00ffff"
android:type="radial"/>
</shape>
I am wondering if I can shift the center color to achieve the gradient at right. I believe the answer is no, but I would like to see if anyone has discovered a way in which to do this. Thanks!
