Ok, cool. I see this helpful Android API reference for the Audio Manager:
Android API AudioManager
So I want to use the VIBRATE_SETTING_OFF constant shown in this listing but what method do I call it with in b4a? SetRingerMode()? Are all Audio Manager calls made using this method?
I can't find a good cross reference to this Android API listing and b4a. Your b4a Audio.html
here doesn't seem to match.
The constants shown in this Android API listing are not the same constants as used in b4a; VIBRATE_SETTING_OFF is equal to RINGER_VIBRATE (b4a).
So I'm back to my same problem:
p.SetRingerMode(p.RINGER_VIBRATE)
...doesn't work...Settings Vibrate stills shows "Never".
Do we have a SetVibrateSetting() method like this one shown in the Android API Audio Manager listing:
public static final int VIBRATE_SETTING_OFF
Since: API Level 1
Vibrate setting that suggests to never vibrate.
See Also
setVibrateSetting(int, int)
getVibrateSetting(int)
Constant Value: 0 (0x00000000)