diff options
| author | Peter Ng <petergng@google.com> | 2011-10-27 19:17:19 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-27 19:17:19 -0700 |
| commit | 81bd76e4b33ea00d30bb2b2193ca5bd0cf445546 (patch) | |
| tree | 7bd9f481e0132ec1756553f2e70288440def8d72 /core/java | |
| parent | e3a31d0340802352d568c8c35ff1fa1047018a42 (diff) | |
| parent | ccff48b7cb4a1dd81ee90fb31d4dedf5dc71b8d0 (diff) | |
Merge "Removing 2nd background clock font display from statusbar and lock screen" into ics-mr1
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/com/android/internal/widget/DigitalClock.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/com/android/internal/widget/DigitalClock.java b/core/java/com/android/internal/widget/DigitalClock.java index 18a4794dbf16..6f24ebaea2ba 100644 --- a/core/java/com/android/internal/widget/DigitalClock.java +++ b/core/java/com/android/internal/widget/DigitalClock.java @@ -168,6 +168,8 @@ public class DigitalClock extends RelativeLayout { /* The time display consists of two tones. That's why we have two overlapping text views. */ mTimeDisplayBackground = (TextView) findViewById(R.id.timeDisplayBackground); mTimeDisplayBackground.setTypeface(sBackgroundFont); + mTimeDisplayBackground.setVisibility(View.INVISIBLE); + mTimeDisplayForeground = (TextView) findViewById(R.id.timeDisplayForeground); mTimeDisplayForeground.setTypeface(sForegroundFont); mAmPm = new AmPm(this, null); |
