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.

I am trying to create a gradient that goes from the centre outwards. (or inwards). So the outside is the same color, and as you get closer to center, it turns red or something.

<?xml version="1.0" encoding="utf-8"?>
<shape 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    >

    <gradient 
          android:startColor="#ffffff"
            android:endColor="#ff00ff00"
            android:centerX="50%"
            android:centerY="50%"
            android:gradientRadius="50%"
            android:type="radial"
        />
</shape>

enter image description here

share|improve this question

1 Answer

up vote 2 down vote accepted

Try to do it this way

    <gradient android:type="radial" android:gradientRadius="50"
    android:startColor="#ffffff"
        android:endColor="#ff00ff00" />

Basically try without the percentage on gradientRadius

share|improve this answer
Thanks. :) gradientRadius appears to be the pixel distance from the center, where it starts changing colour. So I set it to 1000 to make the whole screen be gradient :) (with 50, its just a small circle thats gradient) – Mcloving Jan 7 at 13:58
you r welcome :) – Gridtestmail Jan 7 at 14:03

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.