Scale icons down for sw600dp-land mode.

Cached icons are statically all the same size, so we need to do
it on the fly.

Change-Id: Iae294ff4668f987db8fe5127bae724bf08363542
This commit is contained in:
Andrew Flynn
2012-03-06 11:39:49 -08:00
parent 9d852533de
commit bc239a1546
7 changed files with 52 additions and 31 deletions

View File

@@ -289,7 +289,7 @@ public class BubbleTextView extends TextView {
}
// If text is transparent, don't draw any shadow
if (getCurrentTextColor() == android.R.color.transparent) {
if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
getPaint().clearShadowLayer();
super.draw(canvas);
return;