Which is the meaning of the second parameter of Drawable.createFromStream() method?
From Android APIs I only get:
public static Drawable createFromStream (InputStream is, String srcName)
Create a drawable from an inputstream
In all examples I have read I see they use the string "src": is it the name of the directory where the drawable is cached, relative to my application's root dir?
One parallel question: where am I supposed to find Android core sources (for example of Drawable.createFromStream() method...), to avoid such silly questions, in future?