Android adjustVolume not working on all phones -
im having problems audiomanager android on devices. can adjust volume audimanager.adjuststreamvolume() (tested on samsung galaxy s7 edge android 7 nougat) , works same code doesnt work on devices huawei on marshmallow 6.0. me please??
/** system **/ { if(audiomanager.getstreamvolume(audiomanager.stream_system) > profile.gettime().getsystemvol()) { audiomanager.adjuststreamvolume(audiomanager.stream_system, audiomanager.adjust_lower, 0); } else if(audiomanager.getstreamvolume(audiomanager.stream_system) < profile.gettime().getsystemvol()) { audiomanager.adjuststreamvolume(audiomanager.stream_system, audiomanager.adjust_raise, 0); } }while(audiomanager.getstreamvolume(audiomanager.stream_system) != profile.gettime().getsystemvol());
Comments
Post a Comment