|
|
|
|
|
VolumeModify (Function) In french: VolumeModifie Modifies the setting of the volume for a sound source. Remark: This function can be used in the emulator. // Cuts the phone ring and enables the vibrator mode VolumeModify(0, volumeRing, volumeVibratorOn)
Syntax
<Result> = VolumeModify(<Volume> [, <Source> [, <Options>]])
<Result>: Integer - Value of the volume for the specified source after modification,
- -1 if an error occurred. In this case, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo.
<Volume>: Integer or Integer constant New value for the volume: - Value included between 0 (mute) and 100 (maximum volume).
- Constant used to change the current volume:
| | volumeMinus | Decrements the value of the volume by one level. | volumePlus | Increments the value of volume by one level. |
<Source>: Optional Integer constant Sound source to use: | | volumeAlarm | Volume of the alarme. | volumeCall | Volume of calls. | volumeDefault | Volume of default source. This source depends on the phone configuration. | volumeMusic | Volume used when playing an audio or video file. | volumeNotification | Volume of the sound emitted during a new notification. | volumeRing | Volume of phone ring. | volumeSystem | Volume of system sounds. |
<Options>: Optional Integer constant (or combination of constants) Available options: | | volumeToast | Triggers the display of a toast indicating the new value of the volume for the specified sound source. | volumeVibratorIfSilent | Enables the vibrator of the device when receiving a notification or a call if the corresponding sound source is silent. This option is taken into account only if the specified sound source corresponds to the volumeRing constant or to the volumeNotification constant. | volumeVibratorOff | Disables the vibrator of the device when receiving a notification or a call. This option is taken into account only if the specified sound source corresponds to the volumeRing constant or to the volumeNotification constant. | volumeVibratorOn | Enables the vibrator of the device when receiving a notification or a call. This option is taken into account only if the specified sound source corresponds to the volumeRing constant or to the volumeNotification constant. |
Remarks To modify the sound source associated with the physical button used to set the volume of the device, call VolumePhysicalButton.
Related Examples:
|
Cross-platform examples (WINDEV Mobile): WM System
[ + ] This application is an example of some of the features of WINDEV Mobile available for Android/iOS. The following system functions are used: - NFC - Multimedia control - Brightness - Volume - Wi-Fi - Bluetooth - Toast - Compass - Accelerometer - Camera control - LED - Vibration - Notifications - Drawing functions - Internet
|
Component: wd300android.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|