I am trying to make a drawable to use for a button. I would like it to have this coloring, with a 2px border around it.

Everything works just fine except I cannot get the border to show up...

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

<gradient android:startColor="@color/bar_clicked_dark"
    android:endColor="@color/bar_clicked_light"
    android:angle="90"/>

<corners android:bottomLeftRadius="0dp"
    android:topLeftRadius="15dp"
    android:bottomRightRadius="15dp"
    android:topRightRadius="0dp" />

<stroke android:width="2px" 
    color="#ff00ffff" />

</shape>

Thanks in advance for any help!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

it looks like you forgot the prefix on the color tag. Try

 <stroke android:width="2px" android:color="#ff00ffff"/>
link|improve this answer
oh wow. i should be fired for that one! thanks. I guess color is it's own tag... which explains why it didn't yell at me over it – Matt Jul 15 '11 at 13:22
feedback

Your Answer

 
or
required, but never shown

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