The url you gave is incorrect, but I could find it :
https://support.google.com/nexus/answer/6111294?hl=en
Anyway, that does not help me :
- I do want to hide notification contents, but
- I want to see foobar notifications from home screen.
- It is working with other media players without any special setting on the app notification.
I found this page about Android notifications :
https://developer.android.com/guide/...fications.html
Controlling Media Playback on the Lock Screen
Code:
Notification notification = new NotificationCompat.Builder(context)
// Show controls on lock screen even when user hides sensitive content.
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
I guess this is not done on the source code (Could not check, as the code is not available), or there is something strange with the S5.
Any developer to validate/invalidate this assumption ?
Thanks.