Skip to content

Instantly share code, notes, and snippets.

@shnhrrsn
Created March 10, 2012 21:04
Show Gist options
  • Save shnhrrsn/2013205 to your computer and use it in GitHub Desktop.
Save shnhrrsn/2013205 to your computer and use it in GitHub Desktop.
protected void onDraw(Canvas canvas) {
Bitmap bitmap; // set to your bitmap
Rect src = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); // Fix for HA
canvas.drawBitmap(bitmap, src, new Rect(0, 0, 50, 50), null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment