Ok guys I'm little stacked here. According to official documentation Google says that "Once you've defined your Drawable in XML, save the file in the res/drawable/ directory of your project." is the way to add a XML drawable to the project.

But when I created the project ADT created 3 different drawable folders for mdpi, hdpi, and ldpi. So when I wanted to create my XML drawable, I right click on my drawable-hdpi folder and select "Add new Android XML file", and there I have to select what kind of XML file I want to create, but there isn't "drawable" to select.

If I create new text file and save it as button_drawable.xml Eclipse says that there is an Error in the file and that It can't build my project.

So, please tell me how do you add xml drawables in Eclipse ADT?

link|improve this question

50% accept rate
Not able to understood " but there isn't "drawable" to select. " – viv Oct 19 '10 at 7:24
there is options of what kind is the new android xml file like: layout, strings, values etc. and drawable is not listed as an option – djandreski Oct 19 '10 at 7:57
1  
An easy method without going in detail..... Select any one of them, and replace the code that you want in xml file, with the one that it creates itself in that file. – viv Oct 19 '10 at 8:29
feedback

9 Answers

up vote 3 down vote accepted

I have that problem sometimes.

I always create the XML drawable as "New text file". If you get an error after the XML drawable has been created, check the XML syntax to be sure there is no error in the file, and try to clean the project (Project->Clean->Your project)

Good luck

link|improve this answer
feedback

Just create a drawable folder by yourself and put your files there.

link|improve this answer
Just to clarify, should this be in the /res/ folder? – david99world Oct 9 '11 at 19:43
feedback

Just add a new XML file into the res/drawable folder. The drawable file looks like next:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#FF000000"
        android:centerColor="#FF000000"
        android:endColor="#FF777777"
        android:angle="90" />
</shape>
link|improve this answer
He had problems because he was adding New Android XML, instead of new XML file ;) – sandalone Jan 6 '11 at 18:42
feedback

As of today, there is no "direct" support to drawable resources in Eclipse ADT.

So, from Eclipse Package Explorer, you should "manually" add a new folder named 'drawable' into your project 'res' folder.

Then, still from Package Explorer, you should manually add a new XML file within the newly created folder (right click\ new\ other\ XML\ XML File).

link|improve this answer
This works. Just add a new XML file, add "drawable" elements and no errors will be reported. It worked in my case. – sandalone Jan 6 '11 at 18:41
feedback

Why cant you use BitmapDrawable heres a sample code:

<?xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/drawable_resource"
android:gravity="center"
android:tileMode="repeat"/>
  1. Just replace with your drawable src name and save this as .xml file.
  2. Store the file in res/drawable directory.
  3. Assign the reference to android:background="@drawable/drawable_resource" and it will be tiled.

Example:

<LinearLayout
android:background="@drawable/drawable_resource"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</LineatLayout

Heres a complete template of Bitmap Drawable, you can choose attribute values accourding to your need.

<?xml version="1.0" encoding="utf-8"?>
<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@[package:]drawable/drawable_resource"
    android:antialias=["true" | "false"]
    android:dither=["true" | "false"]
    android:filter=["true" | "false"]
    android:gravity=["top" | "bottom" | "left" | "right" | "center_vertical" |
                      "fill_vertical" | "center_horizontal" | "fill_horizontal" |
                      "center" | "fill" | "clip_vertical" | "clip_horizontal"]
    android:tileMode=["disabled" | "clamp" | "repeat" | "mirror"] />

You can find documentation of the same here look for XML Bitmap.

link|improve this answer
feedback

Drawable is a class within Android, it represents images such a pngs that have been created or loaded from files.

What the documentation meant was added all your images to your drawable folders, then optionally create an xml file that sets the states for the image, by going to File->New->File and typing out the XML yourself. The first link below gives you a template/idea of what it should look like.

Say for example the xml file was custom_button.xml, and you had put in in /res/drawable then in your code, you type R.drawable.custom_button, or if it was just an image such as picture.png then again R.drawable.picture.

XML Drawable

Drawable Class

link|improve this answer
feedback

OK, so not creating 'plain' xml file rather than an Android xml file is the answer, but if you have 3 drawable folders (hdpi, mdpi & ldpi) I still don't know where you are supposed to save it?

link|improve this answer
feedback

It's is exactly like you said : you have the create the file manually. But also the XML file content has to be valid. That's all. You can show us your button_drawable.xml content so we check it.

link|improve this answer
feedback

This worked for me in creating a "drawable" folder inside the res folder. Right click on the res folder->New->Other->General->Folder then Next

Select res from the set of folders under your project then

give it the "drawable" name and Finish!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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