Skip to content Skip to sidebar Skip to footer

Drawing Custom Shape Onto Canvas In Android

I've been stumped by this one for a little bit, so I figured I'd ask here to see if anyone has any pointers. In a nutshell, I have an app where I want multiple complex shapes to be

Solution 1:

Wow, I derped hardcore on this one.

Android: canvas.drawBitmap performance issue

Adding this in my main class made everything happy, at least as far as this simple case went.:

Symbol s = new Symbol();
canvas.save();
canvas.rotate(5);
canvas.drawBitmap(s.b, 0,0, null);
canvas.restore();

Post a Comment for "Drawing Custom Shape Onto Canvas In Android"