summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2014-06-04 00:15:51 -0400
committerJohn Spurlock <jspurlock@google.com>2014-06-04 00:18:27 -0400
commited33da173455add34d95d8a933bff8fc97f882fb (patch)
tree303df30bf9d598b686009309b699617c28be96af /packages/SystemUI/src
parent856edebad73560e9b1cce021a7de9a0470d07176 (diff)
downloadframeworks_base-ed33da173455add34d95d8a933bff8fc97f882fb.zip
frameworks_base-ed33da173455add34d95d8a933bff8fc97f882fb.tar.gz
frameworks_base-ed33da173455add34d95d8a933bff8fc97f882fb.tar.bz2
QuickSettings: System accent color for seekbars.
Decouple system ui's seekbar's color from the platform default. Bug:15186962 Change-Id: I8e4f5605bf5f8be32b290e588d2d854e908f2387
Diffstat (limited to 'packages/SystemUI/src')
-rw-r--r--packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java
index 20bbf8b..b981ed6 100644
--- a/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java
+++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java
@@ -22,7 +22,6 @@ import android.content.Intent;
import android.content.IntentFilter;
import android.media.AudioManager;
import android.util.Log;
-import android.view.ContextThemeWrapper;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnAttachStateChangeListener;
@@ -49,8 +48,7 @@ public class NotificationsTile extends QSTile<NotificationsTile.NotificationsSta
@Override
public View createDetailView(Context context, ViewGroup root) {
- final Context themedContext = new ContextThemeWrapper(mContext, R.style.QSAccentTheme);
- final View v = LayoutInflater.from(themedContext).inflate(R.layout.qs_detail, root, false);
+ final View v = LayoutInflater.from(context).inflate(R.layout.qs_detail, root, false);
final TextView title = (TextView) v.findViewById(android.R.id.title);
title.setText(R.string.quick_settings_notifications_label);
final View close = v.findViewById(android.R.id.button1);