diff options
| author | Julia Reynolds <juliacr@google.com> | 2017-08-24 10:35:53 -0400 |
|---|---|---|
| committer | Julia Reynolds <juliacr@google.com> | 2017-08-30 17:07:58 -0400 |
| commit | 005c8b9098120526fa69f98bce3a5e1f79e3699b (patch) | |
| tree | 68287ae77206a8cecb826773fbb4c6cf749583e6 /core/java/android/app/NotificationChannel.java | |
| parent | cda6ec2826b26c9042f5b8b5caca9323957745fa (diff) | |
Add more functionality to channel groups
Description, blocking, links to/from the app
Test: cts, runtest systemui-notification
Bug: 63927402
Change-Id: Icc8caf319651f9ac2d622fb54110270c89bdff61
Diffstat (limited to 'core/java/android/app/NotificationChannel.java')
| -rw-r--r-- | core/java/android/app/NotificationChannel.java | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/core/java/android/app/NotificationChannel.java b/core/java/android/app/NotificationChannel.java index d6e36914ac6c..163a8dcae2f4 100644 --- a/core/java/android/app/NotificationChannel.java +++ b/core/java/android/app/NotificationChannel.java @@ -830,24 +830,24 @@ public final class NotificationChannel implements Parcelable { @Override public String toString() { - return "NotificationChannel{" + - "mId='" + mId + '\'' + - ", mName=" + mName + - ", mDescription=" + (!TextUtils.isEmpty(mDesc) ? "hasDescription " : "") + - ", mImportance=" + mImportance + - ", mBypassDnd=" + mBypassDnd + - ", mLockscreenVisibility=" + mLockscreenVisibility + - ", mSound=" + mSound + - ", mLights=" + mLights + - ", mLightColor=" + mLightColor + - ", mVibration=" + Arrays.toString(mVibration) + - ", mUserLockedFields=" + mUserLockedFields + - ", mVibrationEnabled=" + mVibrationEnabled + - ", mShowBadge=" + mShowBadge + - ", mDeleted=" + mDeleted + - ", mGroup='" + mGroup + '\'' + - ", mAudioAttributes=" + mAudioAttributes + - ", mBlockableSystem=" + mBlockableSystem + - '}'; + return "NotificationChannel{" + + "mId='" + mId + '\'' + + ", mName=" + mName + + ", mDescription=" + (!TextUtils.isEmpty(mDesc) ? "hasDescription " : "") + + ", mImportance=" + mImportance + + ", mBypassDnd=" + mBypassDnd + + ", mLockscreenVisibility=" + mLockscreenVisibility + + ", mSound=" + mSound + + ", mLights=" + mLights + + ", mLightColor=" + mLightColor + + ", mVibration=" + Arrays.toString(mVibration) + + ", mUserLockedFields=" + Integer.toHexString(mUserLockedFields) + + ", mVibrationEnabled=" + mVibrationEnabled + + ", mShowBadge=" + mShowBadge + + ", mDeleted=" + mDeleted + + ", mGroup='" + mGroup + '\'' + + ", mAudioAttributes=" + mAudioAttributes + + ", mBlockableSystem=" + mBlockableSystem + + '}'; } } |
