The following code defines my bitmap:
Resources res = context.getResources(); mBackground = BitmapFactory.decodeResource(res, R.drawable.bg2);
To draw the scaled bitmap you want save your scaled bitmap in a field somewhere (here called mScaled) and call:
c.drawBitmap(mScaled,0,0,null);
in your draw method (or wherever you call it right now).