Updated streaming confirmation icon
This commit is contained in:
parent
4678297ec3
commit
5521a7a4e1
|
@ -529,17 +529,17 @@ public class PlaybackService extends MediaBrowserServiceCompat {
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, NotificationUtils.CHANNEL_ID_USER_ACTION)
|
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, NotificationUtils.CHANNEL_ID_USER_ACTION)
|
||||||
.setSmallIcon(R.drawable.stat_notify_sync_error)
|
.setSmallIcon(R.drawable.ic_stream_white)
|
||||||
.setContentTitle(getString(R.string.confirm_mobile_streaming_notification_title))
|
.setContentTitle(getString(R.string.confirm_mobile_streaming_notification_title))
|
||||||
.setContentText(getString(R.string.confirm_mobile_streaming_notification_message))
|
.setContentText(getString(R.string.confirm_mobile_streaming_notification_message))
|
||||||
.setStyle(new NotificationCompat.BigTextStyle()
|
.setStyle(new NotificationCompat.BigTextStyle()
|
||||||
.bigText(getString(R.string.confirm_mobile_streaming_notification_message)))
|
.bigText(getString(R.string.confirm_mobile_streaming_notification_message)))
|
||||||
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
|
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
|
||||||
.setContentIntent(pendingIntentAllowThisTime)
|
.setContentIntent(pendingIntentAllowThisTime)
|
||||||
.addAction(R.drawable.stat_notify_sync_error,
|
.addAction(R.drawable.ic_stream_white,
|
||||||
getString(R.string.stream_label),
|
getString(R.string.stream_label),
|
||||||
pendingIntentAllowThisTime)
|
pendingIntentAllowThisTime)
|
||||||
.addAction(R.drawable.stat_notify_sync_error,
|
.addAction(R.drawable.ic_stream_white,
|
||||||
getString(R.string.confirm_mobile_streaming_button_always),
|
getString(R.string.confirm_mobile_streaming_button_always),
|
||||||
pendingIntentAlwaysAllow)
|
pendingIntentAlwaysAllow)
|
||||||
.setAutoCancel(true);
|
.setAutoCancel(true);
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
<vector android:height="24dp"
|
||||||
|
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="#FFFFFFFF" android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
|
||||||
|
</vector>
|
Loading…
Reference in New Issue