Когда вы используете setCompoundDrawables, вам нужен код вроде:
Drawable img;
Resources res = getResources();
img = res.getDrawable(R.drawable.btn_img);
//You need to setBounds before setCompoundDrawables , or it couldn't display
img.setBounds(0, 0, img.getMinimumWidth(), img.getMinimumHeight());
btn.setCompoundDrawables(img_off, null, null, null);
Итак, у вас должны быть способы вызова getResources ()!
Вы можете передать контекст Activity как параметр для использования getResources () и findViewById.