ADB Command to set volume?

前端 未结 4 625
暗喜
暗喜 2020-12-19 23:06

Is there any Adb command to set the volume to a particular value? I know that we can do

adb shell input keyevent 

for volume up and down b

4条回答
  •  情深已故
    2020-12-19 23:25

    media shell command can also be used:

    media volume:  the options are as follows: 
        --stream STREAM selects the stream to control, see AudioManager.STREAM_*
                        controls AudioManager.STREAM_MUSIC if no stream is specified
        --set INDEX     sets the volume index value
        --adj DIRECTION adjusts the volume, use raise|same|lower for the direction
        --get           outputs the current volume
        --show          shows the UI during the volume change
    examples:
        adb shell media volume --show --stream 3 --set 11
        adb shell media volume --stream 0 --adj lower
        adb shell media volume --stream 3 --get
    

    The first example is probably the one you were looking for (but it probably didn't exist at the time of asking)

提交回复
热议问题