Merge "implement the number bubbles on the status bar" into gingerbread

This commit is contained in:
Joe Onorato
2010-10-04 14:41:38 -07:00
committed by Android (Google) Code Review
6 changed files with 88 additions and 40 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1014 B

After

Width:  |  Height:  |  Size: 935 B

View File

@@ -19,4 +19,5 @@
<resources> <resources>
<drawable name="shade_bgcolor">#ff282828</drawable> <drawable name="shade_bgcolor">#ff282828</drawable>
<drawable name="notification_header_text_color">#ff969696</drawable> <drawable name="notification_header_text_color">#ff969696</drawable>
<drawable name="notification_number_text_color">#ffffffff</drawable>
</resources> </resources>

View File

@@ -23,28 +23,34 @@ import android.util.Slog;
import android.view.View; import android.view.View;
import android.widget.LinearLayout; import android.widget.LinearLayout;
import com.android.internal.statusbar.StatusBarIcon;
import com.android.systemui.R; import com.android.systemui.R;
public class IconMerger extends LinearLayout { public class IconMerger extends LinearLayout {
private static final String TAG = "IconMerger"; private static final String TAG = "IconMerger";
private int mIconSize;
private StatusBarIconView mMoreView; private StatusBarIconView mMoreView;
private StatusBarIcon mMoreIcon = new StatusBarIcon(null, R.drawable.stat_notify_more, 0);
public IconMerger(Context context, AttributeSet attrs) { public IconMerger(Context context, AttributeSet attrs) {
super(context, attrs); super(context, attrs);
mIconSize = context.getResources().getDimensionPixelSize(
com.android.internal.R.dimen.status_bar_icon_size);
mMoreView = new StatusBarIconView(context, "more");
mMoreView.set(mMoreIcon);
addView(mMoreView, 0, new LinearLayout.LayoutParams(mIconSize, mIconSize));
} }
public void addMoreView(StatusBarIconView v, LinearLayout.LayoutParams lp) { public void addView(StatusBarIconView v, int index) {
super.addView(v, lp);
mMoreView = v;
}
public void addView(StatusBarIconView v, int index, LinearLayout.LayoutParams lp) {
if (index == 0) { if (index == 0) {
throw new RuntimeException("Attempt to put view before the more view: " + v); throw new RuntimeException("Attempt to put view before the more view: " + v);
} }
super.addView(v, index, lp); addView(v, index, new LinearLayout.LayoutParams(mIconSize, mIconSize));
} }
@Override @Override
@@ -128,27 +134,7 @@ public class IconMerger extends LinearLayout {
} }
} }
// BUG: Updating the text during the layout here doesn't seem to cause mMoreIcon.number = number;
// the view to be redrawn fully. The text view gets resized correctly, but the mMoreView.set(mMoreIcon);
// text contents aren't drawn properly. To work around this, we post a message
// and provide the value later. We're the only one changing this value show it
// should be ordered correctly.
if (false) {
// TODO this.moreIcon.update(number);
} else {
mBugWorkaroundNumber = number;
mBugWorkaroundHandler.post(mBugWorkaroundRunnable);
}
} }
private int mBugWorkaroundNumber;
private Handler mBugWorkaroundHandler = new Handler();
private Runnable mBugWorkaroundRunnable = new Runnable() {
public void run() {
/* TODO
IconMerger.this.moreIcon.update(mBugWorkaroundNumber);
IconMerger.this.moreIcon.view.invalidate();
*/
}
};
} }

View File

@@ -21,22 +21,37 @@ import android.content.pm.PackageManager;
import android.content.res.Resources; import android.content.res.Resources;
import android.graphics.drawable.Drawable; import android.graphics.drawable.Drawable;
import android.graphics.Canvas; import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.Slog; import android.util.Slog;
import android.util.Log; import android.util.Log;
import android.view.View;
import android.view.ViewDebug; import android.view.ViewDebug;
import android.widget.FrameLayout; import android.widget.FrameLayout;
import com.android.internal.statusbar.StatusBarIcon; import com.android.internal.statusbar.StatusBarIcon;
import com.android.systemui.R;
public class StatusBarIconView extends AnimatedImageView { public class StatusBarIconView extends AnimatedImageView {
private static final String TAG = "StatusBarIconView"; private static final String TAG = "StatusBarIconView";
private StatusBarIcon mIcon; private StatusBarIcon mIcon;
@ViewDebug.ExportedProperty private String mSlot; @ViewDebug.ExportedProperty private String mSlot;
private Drawable mNumberBackground;
private Paint mNumberPain;
private int mNumberX;
private int mNumberY;
private String mNumberText;
public StatusBarIconView(Context context, String slot) { public StatusBarIconView(Context context, String slot) {
super(context); super(context);
final Resources res = context.getResources();
mSlot = slot; mSlot = slot;
mNumberPain = new Paint();
mNumberPain.setTextAlign(Paint.Align.CENTER);
mNumberPain.setColor(res.getColor(R.drawable.notification_number_text_color));
mNumberPain.setAntiAlias(true);
} }
private static boolean streq(String a, String b) { private static boolean streq(String a, String b) {
@@ -63,6 +78,9 @@ public class StatusBarIconView extends AnimatedImageView {
&& mIcon.iconLevel == icon.iconLevel; && mIcon.iconLevel == icon.iconLevel;
final boolean visibilityEquals = mIcon != null final boolean visibilityEquals = mIcon != null
&& mIcon.visible == icon.visible; && mIcon.visible == icon.visible;
final boolean numberEquals = mIcon != null
&& mIcon.number == icon.number;
mIcon = icon.clone();
if (!iconEquals) { if (!iconEquals) {
Drawable drawable = getIcon(icon); Drawable drawable = getIcon(icon);
if (drawable == null) { if (drawable == null) {
@@ -74,10 +92,22 @@ public class StatusBarIconView extends AnimatedImageView {
if (!levelEquals) { if (!levelEquals) {
setImageLevel(icon.iconLevel); setImageLevel(icon.iconLevel);
} }
if (!numberEquals) {
if (icon.number > 0) {
if (mNumberBackground == null) {
mNumberBackground = getContext().getResources().getDrawable(
R.drawable.ic_notification_overlay);
}
placeNumber();
} else {
mNumberBackground = null;
mNumberText = null;
}
invalidate();
}
if (!visibilityEquals) { if (!visibilityEquals) {
setVisibility(icon.visible ? VISIBLE : GONE); setVisibility(icon.visible ? VISIBLE : GONE);
} }
mIcon = icon.clone();
return true; return true;
} }
@@ -126,9 +156,47 @@ public class StatusBarIconView extends AnimatedImageView {
return mIcon; return mIcon;
} }
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
if (mNumberBackground != null) {
placeNumber();
}
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (mNumberBackground != null) {
mNumberBackground.draw(canvas);
canvas.drawText(mNumberText, mNumberX, mNumberY, mNumberPain);
}
}
protected void debug(int depth) { protected void debug(int depth) {
super.debug(depth); super.debug(depth);
Log.d("View", debugIndent(depth) + "slot=" + mSlot); Log.d("View", debugIndent(depth) + "slot=" + mSlot);
Log.d("View", debugIndent(depth) + "icon=" + mIcon); Log.d("View", debugIndent(depth) + "icon=" + mIcon);
} }
void placeNumber() {
final String str = mNumberText = Integer.toString(mIcon.number);
final int w = getWidth();
final int h = getHeight();
final Rect r = new Rect();
mNumberPain.getTextBounds(str, 0, str.length(), r);
final int tw = r.right - r.left;
final int th = r.bottom - r.top;
mNumberBackground.getPadding(r);
int dw = r.left + tw + r.right;
if (dw < mNumberBackground.getMinimumWidth()) {
dw = mNumberBackground.getMinimumWidth();
}
mNumberX = w-r.right-((dw-r.right-r.left)/2);
int dh = r.top + th + r.bottom;
if (dh < mNumberBackground.getMinimumWidth()) {
dh = mNumberBackground.getMinimumWidth();
}
mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2);
mNumberBackground.setBounds(w-dw, h-dh, w, h);
}
} }

View File

@@ -309,12 +309,6 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
mEdgeBorder = res.getDimensionPixelSize(R.dimen.status_bar_edge_ignore); mEdgeBorder = res.getDimensionPixelSize(R.dimen.status_bar_edge_ignore);
// the more notifications icon
StatusBarIconView moreView = new StatusBarIconView(this, "more");
moreView.set(new StatusBarIcon(null, R.drawable.stat_notify_more, 0));
mNotificationIcons.addMoreView(moreView,
new LinearLayout.LayoutParams(mIconSize, mIconSize));
// set the inital view visibility // set the inital view visibility
setAreThereNotifications(); setAreThereNotifications();
mDateView.setVisibility(View.INVISIBLE); mDateView.setVisibility(View.INVISIBLE);
@@ -580,8 +574,7 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
parent.addView(row, viewIndex); parent.addView(row, viewIndex);
// Add the icon. // Add the icon.
final int iconIndex = chooseIconIndex(isOngoing, viewIndex); final int iconIndex = chooseIconIndex(isOngoing, viewIndex);
mNotificationIcons.addView(iconView, iconIndex, mNotificationIcons.addView(iconView, iconIndex);
new LinearLayout.LayoutParams(mIconSize, mIconSize));
return iconView; return iconView;
} }

View File

@@ -619,7 +619,7 @@ public class NotificationTestList extends TestActivity
} }
}, },
new Test("Persistent with numbers 222") { new Test("Persistent with numbers 22") {
public void run() { public void run() {
mNM.notify(1, notificationWithNumbers(22)); mNM.notify(1, notificationWithNumbers(22));
} }