标签: android android-videoview
我使用以下电话播放音乐:
vv = (VideoView)findViewById(R.id.screen_audio); Uri music = Uri.parse(path); vv.setVideoURI(music); vv.start();
但是当我弹奏时,volumn_up和volumn_down按钮无法按下。 如何修改它以更改媒体卷?
答案 0 :(得分:1)
您必须使用控件来更改音量。请查看以下示例以了解相关信息。
Implement a SeekBar to control the volume of Video Player