com.android.layoutlib.bridge.BridgeCanvas类(in layoutlib.lib)
a) line 635:
g.fillRoundRect((int)rect.left, (int)rect.right, (int)
rect.width(), (int)rect.height(), arcWidth, arcHeight);
is wrong,should be:
g.fillRoundRect((int)rect.left, (int)rect.top, (int)
rect.width(), (int)rect.height(), arcWidth, arcHeight);
b) line 638:
g.drawRoundRect((int)rect.left, (int)rect.right, (int)
rect.width(), (int)rect.height(),arcWidth, arcHeight);
is wrong, should be:
g.drawRoundRect((int)rect.left, (int)rect.top, (int)
rect.width(), (int)rect.height(),arcWidth, arcHeight);
I think it would be fixed in next releasing version.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---