summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/Utilities.java
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2009-08-28 09:38:18 -0700
committerJoe Onorato <joeo@android.com>2009-08-28 09:38:18 -0700
commitefabe00e4a51bb792366c459d6acc46832e61fdc (patch)
tree95d991d26a3f9207343c46a23bf51d1fd6f40b44 /src/com/android/launcher2/Utilities.java
parentb58cbdc62d8244c33165f7c8600ddbb04cba5586 (diff)
downloadandroid_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.tar.gz
android_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.tar.bz2
android_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.zip
The icons are 3d
Diffstat (limited to 'src/com/android/launcher2/Utilities.java')
-rw-r--r--src/com/android/launcher2/Utilities.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/android/launcher2/Utilities.java b/src/com/android/launcher2/Utilities.java
index 53e42e3cf..0c5dbbdf0 100644
--- a/src/com/android/launcher2/Utilities.java
+++ b/src/com/android/launcher2/Utilities.java
@@ -264,12 +264,14 @@ final class Utilities {
mTextWidth = bubbleWidth - mBubblePadding - mBubblePadding;
Paint rectPaint = mRectPaint = new Paint();
- rectPaint.setColor(0xaa000000);
+ rectPaint.setColor(0xff000000);
rectPaint.setAntiAlias(true);
+ Log.d(Launcher.LOG_TAG, "scale=" + scale + " textSize=" + (13*scale));
+
TextPaint textPaint = mTextPaint = new TextPaint();
- textPaint.setTypeface(Typeface.DEFAULT_BOLD);
- textPaint.setTextSize(20);
+ textPaint.setTypeface(Typeface.DEFAULT);
+ textPaint.setTextSize(13*scale);
textPaint.setColor(0xffffffff);
textPaint.setAntiAlias(true);