Reputation: 65
I need to set Priority of notification to Max to show in big content. But this cause to show notification in lock screen. How can I prevent it form showing in lock screen? This method doesn't support all android apis
.setVisibility(Notification.VISIBILITY_PRIVATE)
Upvotes: 0
Views: 887
Reputation: 8463
Try using setPublicVersion
with setVisibility
in Notification.Builder
class. Refer: https://developer.android.com/reference/android/app/Notification.Builder.html#setVisibility(int)
Upvotes: 1