Android Question GUI volume control

JakeBullet70

Well-Known Member
Licensed User
Longtime User
Trying to get the GUI to popup for the volume control


This does not works (trying to popup the SYSTEM volume)
B4X:
Public ph As Phone
Dim currVol As Int = ph.GetVolume(ph.VOLUME_SYSTEM)
ph.SetVolume(ph.VOLUME_SYSTEM,currVol, True)

this works (the MUSIC volume)
B4X:
Public ph As Phone
Dim currVol As Int = ph.GetVolume(ph.VOLUME_MUSIC)
ph.SetVolume(ph.VOLUME_MUSIC,currVol, True)

Is there a problem with the system volume?
 
Top