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 have some problems finding the documentation of the definitions of shapes in XML for Android. I would like to define a simple circle filled with a solid color in an XML File to include it into my layout files.

Sadly the Documentation on android.com does not cover the XML attributes of the Shape classes. I think I should use an ArcShape to draw a circle but there is no explanation on how to set the size, the color, or the angle needed to make a circle out of an Arc.

share|improve this question
look down at the bottom, there's the answer and code :) – cV2 Apr 5 '12 at 21:41

5 Answers

up vote 7 down vote accepted

It's not true ShapeDrawable doesn't have XML representation. Here's what you're looking for.

share|improve this answer

Look in the Android SDK samples. There are several examples in the ApiDemos project:

/ApiDemos/res/drawable/

  • black_box.xml
  • shape_5.xml
  • etc

It will look something like this for a circle with a gradient fill:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
    <gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF"
            android:angle="270"/>
</shape>

share|improve this answer

This is a simple circle as a drawable in Android.

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

   <solid 
       android:color="#666666"/>

   <size 
       android:width="120dp"
        android:height="120dp"/>
</shape>
share|improve this answer

Just use

ShapeDrawable circle = new ShapeDrawable( new  OvalShape() );
share|improve this answer
And how can I set that as the src of an ImageView in my XML layout file? – Janusz Jul 6 '10 at 10:22

Not all Android classes have XML presentation. TextView for example has it has it

For your needs you can use ShapeDrawable

share|improve this answer
I know that I can use a ShapeDrawable but how do I do it? – Janusz Jul 6 '10 at 9:57
developer.android.com/guide/topics/graphics/2d-graphics.html find there ShapeDrawable – Orsol Jul 6 '10 at 10:08
Thanks for the link again. But there is no Documentation on how to generate a circle in XML on this page. – Janusz Jul 6 '10 at 10:23
You couldn't generate a circle in XML. You need to create your own view that draws circle and then you can use it in XML. – Orsol Jul 6 '10 at 10:29

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.