Can you load a drawable from a sub directory in the assets (not the drawable folder) folder?

link|improve this question

43% accept rate
feedback

4 Answers

up vote 20 down vote accepted

Hope this help:

Drawable d = Drawable.createFromStream(getAssets().open("Cloths/btn_no.png"), null);
link|improve this answer
feedback

Yes you can create a Drawable object from an InputStream using the createFromStream() method.

link|improve this answer
is it possible for drawables in drawable folder also?if yes than how? – chirag shah Feb 3 '11 at 11:47
@chiragshah I don't understand. Images in the drawable directory are converted by the system for you. – Octavian Damiean Feb 3 '11 at 11:53
I need a quick way to load images from the assets folder as i have a lot of map tiles with same names but different directories. – Jamie Feb 3 '11 at 11:55
@Octavien :see this que.:stackoverflow.com/questions/4885469/… – chirag shah Feb 3 '11 at 11:59
feedback

I recommend to use this

 Drawable.createFromResourceStream(resources,new TypedValue(), resources.getAssets().open(filename), null)

which returns properly scaled drawable thanks to resources ...

link|improve this answer
warrning: this method cause exception on HTC Desire HD, dont ask me why ... – David Feb 14 at 20:18
feedback

At this version you can't, if you make a sub folder within your drawable folder you can't use it in your xml file, it won't be recognized when you use android:src.

Take a look at this thread: Can The Android drawable directory contain subdirectories?

link|improve this answer
That being the case, what is the easiest way to load a couple of hundred custom map tiles to display on the screen? – Jamie Feb 3 '11 at 10:40
Ah my question is about the assets folder, not the drawable. Question edited. – Jamie Feb 3 '11 at 11:18
This answer is outdated now that the question has been updated. – Styler May 4 at 16:40
feedback

Your Answer

 
or
required, but never shown

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