Control device media volume using Seekbar in Sketchware App
The Seekbar can be set to control media volume of device, when any media is playing, with the use of simple codes in add source directly block in Sketchware.
It only works if any audio is playing, otherwise it doesn't change the device audio volume.
In LOGIC area, in onCreate event add following code in end using add source directly block:
audioManager = (AudioManager) getSystemService(Context. AUDIO_SERVICE); seekbar1.setMax(audioManager. getStreamMaxVolume( AudioManager.STREAM_MUSIC));
Create a More block and put following code in it using an add source directly block.
}
AudioManager audioManager;
private void nothing() {
In Seekbar onProgressChanged event add following code using add source directly block:
textview1.setText("Music Volume : " + _progressValue);
audioManager.setStreamVolume( AudioManager.STREAM_MUSIC, _progressValue, 0);
That's all. Save and run the project. You should be able to change the volume of any music playing in device using the Seekbar.
It only works if any audio is playing, otherwise it doesn't change the device audio volume.
Join this group for helping in developing have fun with this all groups making for only who like Android development using skitchware
ReplyDeleteTelegram group ->
https://t.me/joinchat/Fs_zjg8BLBEBf--zXas5SQ
WhatsApp group ->
https://chat.whatsapp.com/GthHkGFRfCW7oq4n13xlc3
Hi how I create a app that mutes the device volume on syart
DeleteStart*
DeleteAudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
DeleteaudioManager.setStreamVolume(AudioManager.STREAM_MUSIC, 0, 0);
Please add this groups link in your you tube channel because this will help u and me and all people so please
ReplyDeleteThanks you
...
Share link with ur friends and family
Send me your number please
Hi! How to make a program that changes or adjust the screen brightness of a device?
ReplyDeleteEu quero um linke pra fazer um mod para o maskgum
DeleteSbhdvyivei
DeleteaudioManager = (AudioManager) getSystemService (Context.AUDIO_SERVICE); ...
ReplyDeleteshould be...
AudioManager audioManager = (AudioManager) getSystemService (Context.AUDIO_SERVICE); ...
how to increase number using volume button in sketchware
ReplyDelete