Merge "Keep notification when sending smart reply." into pi-dev

This commit is contained in:
Selim Cinek
2018-05-18 16:20:40 +00:00
committed by Android (Google) Code Review
12 changed files with 190 additions and 45 deletions

View File

@@ -983,6 +983,17 @@ public class Notification implements Parcelable
*/
public static final String EXTRA_SHOW_REMOTE_INPUT_SPINNER = "android.remoteInputSpinner";
/**
* {@link #extras} key: boolean as supplied to
* {@link Builder#setHideSmartReplies(boolean)}.
*
* If set to true, then any smart reply buttons will be hidden.
*
* @see Builder#setHideSmartReplies(boolean)
* @hide
*/
public static final String EXTRA_HIDE_SMART_REPLIES = "android.hideSmartReplies";
/**
* {@link #extras} key: this is a small piece of additional text as supplied to
* {@link Builder#setContentInfo(CharSequence)}.
@@ -3594,6 +3605,15 @@ public class Notification implements Parcelable
return this;
}
/**
* Sets whether smart reply buttons should be hidden.
* @hide
*/
public Builder setHideSmartReplies(boolean hideSmartReplies) {
mN.extras.putBoolean(EXTRA_HIDE_SMART_REPLIES, hideSmartReplies);
return this;
}
/**
* Sets the number of items this notification represents. May be displayed as a badge count
* for Launchers that support badging.