Source code
package android.support.v4.app;
import android.app.Notification;
import android.app.Notification.Builder;
import android.app.PendingIntent;
import android.content.Context;
import android.graphics.Bitmap;
import android.widget.RemoteViews;
class NotificationCompatHoneycomb {
NotificationCompatHoneycomb() {
}
static Notification add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon) {
boolean z;
Builder lights = new Builder(context).setWhen(n.when).setSmallIcon(n.icon, n.iconLevel).setContent(n.contentView).setTicker(n.tickerText, tickerView).setSound(n.sound, n.audioStreamType).setVibrate(n.vibrate).setLights(n.ledARGB, n.ledOnMS, n.ledOffMS);
if ((n.flags & 2) != 0) {
z = true;
} else {
z = false;
}
lights = lights.setOngoing(z);
if ((n.flags & 8) != 0) {
z = true;
} else {
z = false;
}
lights = lights.setOnlyAlertOnce(z);
if ((n.flags & 16) != 0) {
z = true;
} else {
z = false;
}
lights = lights.setAutoCancel(z).setDefaults(n.defaults).setContentTitle(contentTitle).setContentText(contentText).setContentInfo(contentInfo).setContentIntent(contentIntent).setDeleteIntent(n.deleteIntent);
if ((n.flags & 128) != 0) {
z = true;
} else {
z = false;
}
return lights.setFullScreenIntent(fullScreenIntent, z).setLargeIcon(largeIcon).setNumber(number).getNotification();
}
}