Android Question Notification Sound Without Icon/Alert

Marcos Alves

Well-Known Member
Licensed User
Longtime User
Is it possible to do a notification only with sound ? (for example, when we receive a message in whatsapp and the chat is open there is only sound, no icon...)
 

Marcos Alves

Well-Known Member
Licensed User
Longtime User
This is not a notification. The app plays a sound.
Thaks @Erel ... That's exactly what I done... I checkd phone rigermode in order to respect the user silence configuration before playing a sound related to an app event... something like tihis:

B4X:
If Phone1.GetRingerMode <> Phone1.RINGER_SILENT And Phone1.GetRingerMode <> Phone1.RINGER_VIBRATE Then
            Mplayer.Play
End If
 
Upvote 0
Top