user6022289
user6022289

Reputation: 65

Show notification except in lock screen

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

Answers (1)

Sneh Pandya
Sneh Pandya

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

Related Questions