diff options
| author | 2017-01-10 19:31:07 +0100 | |
|---|---|---|
| committer | 2017-01-11 14:38:29 +0100 | |
| commit | d4a54bbfd1902dccb0e4de03f15bfbbba50b9531 (patch) | |
| tree | d5ba84158c241640b83f0c934b4e7e164b39cf7b | |
| parent | b03bfe0ad6585e634b4a84b57e8f2aeb3c6030bd (diff) | |
Add ticker text for network logging notification
Set ticker text to title for accessibility.
Bug:31207965
Test: manual
Change-Id: I0b78f9e6464dd470b74e0db97813623b335835d9
| -rw-r--r-- | services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java index 9f6606278cec..2e5b6876719e 100644 --- a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java +++ b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java @@ -10097,6 +10097,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub { .setSmallIcon(R.drawable.ic_qs_network_logging) .setContentTitle(mContext.getString(R.string.network_logging_notification_title)) .setContentText(mContext.getString(R.string.network_logging_notification_text)) + .setTicker(mContext.getString(R.string.network_logging_notification_title)) .setShowWhen(true) .setContentIntent(pendingIntent) .build(); |