I\'m looking to get the pointing reference from an attribute via code. In my xml layouts I can easily get the referenced drawable like this:
android:backgrou
Shouldn't you use:
android:background="@drawable/listItemBackground"
And then:
myImageButton.getBackgroundDrawable()
Or maybe I didn't understand ...