Shouldn't I be able to cancel an existing notification upon UserClosed in Activity_Pause? Desn't seem to work - it's still on the notifications display.
B4X:
Sub Activity_Pause (UserClosed As Boolean)
If UserClosed Then
activenotif.Cancel(1) 'activnotif is a global variable, the result of an NB6 build
End If
End Sub