Merge "Always highlight unread count" into sc-dev
This commit is contained in:
@@ -52,7 +52,6 @@ public class NotificationExpandButton extends FrameLayout {
|
||||
private int mDefaultTextColor;
|
||||
private int mHighlightPillColor;
|
||||
private int mHighlightTextColor;
|
||||
private boolean mDisallowColor;
|
||||
|
||||
public NotificationExpandButton(Context context) {
|
||||
this(context, null, 0, 0);
|
||||
@@ -108,14 +107,6 @@ public class NotificationExpandButton extends FrameLayout {
|
||||
return super.pointInView(localX, localY, slop);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disable the use of the accent colors for this view, if true.
|
||||
*/
|
||||
public void setGrayedOut(boolean shouldApply) {
|
||||
mDisallowColor = shouldApply;
|
||||
updateColors();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
|
||||
super.onInitializeAccessibilityNodeInfo(info);
|
||||
@@ -164,7 +155,7 @@ public class NotificationExpandButton extends FrameLayout {
|
||||
}
|
||||
|
||||
private void updateColors() {
|
||||
if (shouldShowNumber() && !mDisallowColor) {
|
||||
if (shouldShowNumber()) {
|
||||
if (mHighlightPillColor != 0) {
|
||||
mPillView.setBackgroundTintList(ColorStateList.valueOf(mHighlightPillColor));
|
||||
}
|
||||
|
||||
@@ -32,7 +32,6 @@ import com.android.internal.R;
|
||||
import com.android.internal.widget.CachingIconView;
|
||||
import com.android.internal.widget.ConversationLayout;
|
||||
import com.android.internal.widget.ImageFloatingTextView;
|
||||
import com.android.internal.widget.NotificationExpandButton;
|
||||
import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow;
|
||||
import com.android.systemui.statusbar.notification.row.NotificationContentView;
|
||||
|
||||
@@ -80,11 +79,6 @@ public class NotificationGroupingUtil {
|
||||
if (icon != null) {
|
||||
icon.setGrayedOut(apply);
|
||||
}
|
||||
NotificationExpandButton expand =
|
||||
view.findViewById(com.android.internal.R.id.expand_button);
|
||||
if (expand != null) {
|
||||
expand.setGrayedOut(apply);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user