Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a shape defined as follows:

<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >
  <gradient
    android:angle="90"
    android:endColor="@color/white"
    android:startColor="@color/grey"
    android:type="linear" />
</shape>

The gradient transitions from grey to white evenly from bottom to top, reaching the colour that is between grey and white in the middle. I would like to change the mid-point of the gradient to be closer to the bottom, so that the shape is more white than grey, if that makes sense?! Anyone know how to do this, or whether this is not possible? I have tried setting the android:centerY attribute to 0.1 and 0.9 but I see no visible difference.

share|improve this question

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.