Created
March 10, 2012 21:04
-
-
Save shnhrrsn/2013205 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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