summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2010-06-01 08:17:58 -0700
committerJoe Onorato <joeo@android.com>2010-06-02 14:48:46 -0700
commit1a86dd10c11413cf0301a14b1837dbf703f2b9de (patch)
tree13a35835993f69c59abe42597b9bff33cd4c5c8d /packages
parentf55105405578bfd8315584e69faa655800edef77 (diff)
downloadframeworks_base-1a86dd10c11413cf0301a14b1837dbf703f2b9de.zip
frameworks_base-1a86dd10c11413cf0301a14b1837dbf703f2b9de.tar.gz
frameworks_base-1a86dd10c11413cf0301a14b1837dbf703f2b9de.tar.bz2
Use the built-in handler instead of allocating another one.
Change-Id: Ia2e5db99b751d3f299c4a9b587ef718212bd8161
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/Clock.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/Clock.java b/packages/SystemUI/src/com/android/systemui/statusbar/Clock.java
index c944808..9fc8df5 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/Clock.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/Clock.java
@@ -25,7 +25,6 @@ import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Typeface;
import android.graphics.drawable.Drawable;
-import android.os.Handler;
import android.text.Spannable;
import android.text.SpannableStringBuilder;
import android.text.format.DateFormat;
@@ -49,7 +48,6 @@ import com.android.internal.R;
* minutes.
*/
public class Clock extends TextView {
- private final Handler mHandler = new Handler();
private boolean mAttached;
private Calendar mCalendar;
private String mClockFormatString;
@@ -86,7 +84,7 @@ public class Clock extends TextView {
filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
- getContext().registerReceiver(mIntentReceiver, filter, null, mHandler);
+ getContext().registerReceiver(mIntentReceiver, filter, null, getHandler());
}
// NOTE: It's safe to do these after registering the receiver since the receiver always runs