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 add this gradient code to colors.xml but Eclipse keeps saying "Invalide start tag shape"

projname/values/colors.xml (what is currently here)

<?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="400"
 android:startColor="#88cce7"
 android:endColor="#075e81"/>
</shape>
<resources>
  <color name="bg_red">#FF0000</color>
  <color name="bg_white">#FFFFFF</color>
  <color name="bg_black">#000000</color>
  <color name="opaque_red">#f00</color>
  <color name="translucent_red">#80ff0000</color>
</resources>

e.g. this is the gradient I am trying to emulate: http://i.stack.imgur.com/YMbNR.png

share|improve this question
it should be in res/drawable folder – Rosalie May 24 '11 at 5:43

1 Answer

According to the Android docs, it belongs in the res/drawable folder.

res/drawable/filename.xml

Create that file and put your shape definition in there.

share|improve this answer

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.