Android代码中媒体播放器的音量管理问题
我正在一个具有选项卡活动的android选项卡中工作,我为每个选项卡制作了选项卡组,在一项活动中我有用于播放音频歌曲的媒体播放器。一切都很好,除了 我无法控制媒体播放器的音量,也没有看到 Android 设备的音量控制对话框。这是我的代码,
mp=new MediaPlayer();
mp.setWakeMode(getParent(), PowerManager.PARTIAL_WAKE_LOCK); //for powermanagement
try {
if(GlobalConfig.notInternet==true)
{
mp.setDataSource("/sdcard/abc/"+file);
}else{
mp.setDataSource(url2);
}
mp.prepare();
} catch (IllegalArgumentException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
mp.start();
请帮助我。提前致谢
I am working in an android tab which has tabs activities, I have made tab groups for every tabs, in one activity i have media player for playing audio song. everything is fine except
i cann't control the volume of media player and I am not seeing volume control dialog of android device. here is my code,
mp=new MediaPlayer();
mp.setWakeMode(getParent(), PowerManager.PARTIAL_WAKE_LOCK); //for powermanagement
try {
if(GlobalConfig.notInternet==true)
{
mp.setDataSource("/sdcard/abc/"+file);
}else{
mp.setDataSource(url2);
}
mp.prepare();
} catch (IllegalArgumentException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
mp.start();
please help me. thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码应用于管理媒体声音......
The following code should be used to managing media sound...