Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

enter image description here

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!

share|improve this question
Do you find any solution? – Mr.Hyde Nov 14 '12 at 12:27
No. I am fairly certain this is not possible, but am leaving it unanswered until someone has done better research into the problem than I. – Daniel Smith Nov 15 '12 at 18:15
just stumbled over your post, need similar. Afaik this is not possible just in xml i think. If you use the ShaderFactory even this sounds immpossible to me as center is always 0.5. – Kitesurfer Jan 2 at 1:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.