Original title: "View.findDrawableById() incorrectly used in doc code example as a static method"
Like many of the doc code examples, it simply does not work, but in this case, it's also highly misleading, as it suggests that findDrawableId is a static method, rather than an instance method.
EDIT: as flocsy pointed out, if you imagine that the sample code is wrapped in a View-derived class, all of a sudden the code "View.findDrawableById()" takes on a completely different meaning. The code sample as-is is still not great, especially for noob coders who would not automatically know all of of this stuff.
(If they did, they probably wouldn't need the sample.)