- id
- The desired resource identifier, as generated by the aapt tool. This integer encodes the package, type, and resource entry. The value 0 is an invalid identifier.
Documentation for this section has not yet been entered.
Type Reason !:NoType:android/content/res/Resources$NotFoundException;Href=../../../../reference/android/content/res/Resources.NotFoundException.html Throws NotFoundException if the given ID does not exist.
Return a drawable object associated with a particular resource ID. Various types of objects will be returned depending on the underlying resource -- for example, a solid color, PNG image, scalable image, etc. The Drawable API hides these implementation details.
Note: Prior to NoType:android/os/Build$VERSION_CODES;Href=../../../../reference/android/os/Build.VERSION_CODES.html#JELLY_BEAN, this function would not correctly retrieve the final configuration density when the resource ID passed here is an alias to another Drawable resource. This means that if the density configuration of the alias resource is different than the actual resource, the density of the returned Drawable would be incorrect, resulting in bad scaling. To work around this, you can instead retrieve the Drawable through TypedArray.GetDrawable(int). Use Android.Content.Context.ObtainStyledAttributes(Int32[]) with an array containing the resource ID of interest to create the TypedArray.
Note: To obtain a themed drawable, use Android.Content.Context.GetDrawable(int) or Resources.GetDrawable(int, .Theme) passing the desired theme.