Merge "New API for high-priority Notifications and full-screen alerts." into gingerbread

This commit is contained in:
Daniel Sandler
2010-06-17 13:23:59 -07:00
committed by Android (Google) Code Review
2 changed files with 61 additions and 5 deletions

View File

@@ -26547,6 +26547,17 @@
visibility="public" visibility="public"
> >
</field> </field>
<field name="FLAG_HIGH_PRIORITY"
type="int"
transient="false"
volatile="false"
value="128"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="FLAG_INSISTENT" <field name="FLAG_INSISTENT"
type="int" type="int"
transient="false" transient="false"
@@ -26673,6 +26684,16 @@
visibility="public" visibility="public"
> >
</field> </field>
<field name="fullScreenIntent"
type="android.app.PendingIntent"
transient="false"
volatile="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="icon" <field name="icon"
type="int" type="int"
transient="false" transient="false"
@@ -188125,6 +188146,7 @@
visibility="public" visibility="public"
> >
</field> </field>
</field>
<field name="FLAG_KEEP_SCREEN_ON" <field name="FLAG_KEEP_SCREEN_ON"
type="int" type="int"
transient="false" transient="false"

View File

@@ -83,10 +83,10 @@ public class Notification implements Parcelable
public int icon; public int icon;
/** /**
* The number of events that this notification represents. For example, if this is the * The number of events that this notification represents. For example, in a new mail
* new mail notification, this would be the number of unread messages. This number is * notification, this could be the number of unread messages. This number is superimposed over
* be superimposed over the icon in the status bar. If the number is 0 or negative, it * the icon in the status bar. If the number is 0 or negative, it is not shown in the status
* is not shown in the status bar. * bar.
*/ */
public int number; public int number;
@@ -108,6 +108,15 @@ public class Notification implements Parcelable
*/ */
public PendingIntent deleteIntent; public PendingIntent deleteIntent;
/**
* An intent to launch instead of posting the notification to the status bar. Only for use with
* extremely high-priority notifications demanding the user's attention, such as an incoming
* call (handled in the core Android Phone app with a full-screen Activity).
* Use with {@link #FLAG_HIGH_PRIORITY} to ensure that this notification will reach the user
* even when other notifications are suppressed.
*/
public PendingIntent fullScreenIntent;
/** /**
* Text to scroll across the screen when this item is added to * Text to scroll across the screen when this item is added to
* the status bar. * the status bar.
@@ -115,7 +124,7 @@ public class Notification implements Parcelable
public CharSequence tickerText; public CharSequence tickerText;
/** /**
* The view that shows when this notification is shown in the expanded status bar. * The view that will represent this notification in the expanded status bar.
*/ */
public RemoteViews contentView; public RemoteViews contentView;
@@ -264,6 +273,14 @@ public class Notification implements Parcelable
*/ */
public static final int FLAG_FOREGROUND_SERVICE = 0x00000040; public static final int FLAG_FOREGROUND_SERVICE = 0x00000040;
/**
* Bit to be bitwise-ored into the {@link #flags} field that should be set if this notification
* represents a high-priority event that may be shown to the user even if notifications are
* otherwise unavailable (that is, when the status bar is hidden). This flag is ideally used
* in conjunction with {@link #fullScreenIntent}.
*/
public static final int FLAG_HIGH_PRIORITY = 0x00000080;
public int flags; public int flags;
/** /**
@@ -339,6 +356,10 @@ public class Notification implements Parcelable
ledOnMS = parcel.readInt(); ledOnMS = parcel.readInt();
ledOffMS = parcel.readInt(); ledOffMS = parcel.readInt();
iconLevel = parcel.readInt(); iconLevel = parcel.readInt();
if (parcel.readInt() != 0) {
fullScreenIntent = PendingIntent.CREATOR.createFromParcel(parcel);
}
} }
public Notification clone() { public Notification clone() {
@@ -351,6 +372,7 @@ public class Notification implements Parcelable
// PendingIntents are global, so there's no reason (or way) to clone them. // PendingIntents are global, so there's no reason (or way) to clone them.
that.contentIntent = this.contentIntent; that.contentIntent = this.contentIntent;
that.deleteIntent = this.deleteIntent; that.deleteIntent = this.deleteIntent;
that.fullScreenIntent = this.fullScreenIntent;
if (this.tickerText != null) { if (this.tickerText != null) {
that.tickerText = this.tickerText.toString(); that.tickerText = this.tickerText.toString();
@@ -433,6 +455,13 @@ public class Notification implements Parcelable
parcel.writeInt(ledOnMS); parcel.writeInt(ledOnMS);
parcel.writeInt(ledOffMS); parcel.writeInt(ledOffMS);
parcel.writeInt(iconLevel); parcel.writeInt(iconLevel);
if (fullScreenIntent != null) {
parcel.writeInt(1);
fullScreenIntent.writeToParcel(parcel, 0);
} else {
parcel.writeInt(0);
}
} }
/** /**
@@ -518,6 +547,11 @@ public class Notification implements Parcelable
} }
sb.append(",defaults=0x"); sb.append(",defaults=0x");
sb.append(Integer.toHexString(this.defaults)); sb.append(Integer.toHexString(this.defaults));
sb.append(",flags=0x");
sb.append(Integer.toHexString(this.flags));
if ((this.flags & FLAG_HIGH_PRIORITY) != 0) {
sb.append("!!!1!one!");
}
sb.append(")"); sb.append(")");
return sb.toString(); return sb.toString();
} }