I need to rotate my view, say a button. I want the button to be 45
degrees rotated, and I want the button to also be functional. I want
the touch area to remain only around the button...
How can I rotate? I tried;
@Override
protected void onDraw(Canvas c)
{
Log.i("CustomButtons","onDraw");
c.rotate(90);
super.onDraw(c);
}
but nothing happenS! :(
Help?
Thanks
Moto!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---