在 Android 中,媒体播放器不工作
当我尝试以下操作时,媒体播放器无法工作:
player=MediaPlayer.create(this, R.raw.mh);
player.start();
我收到此错误:
方法create(Context, int) 类型 MediaPlayer 不适用于 论据(新的 View.OnClickListener(){}, int)
The media player is not working when I try the following:
player=MediaPlayer.create(this, R.raw.mh);
player.start();
I receive this error:
The method create(Context, int) in the
type MediaPlayer is not applicable for
the arguments (new
View.OnClickListener(){}, int)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是因为此代码位于另一个类/匿名类内部。无论您的活动名称是什么,您都不应该使用
this
,而应该使用MyActivityClassName.this
。It is probably because this code is located inside of another class / anonymous class. You should not use
this
, butMyActivityClassName.this
whatever your activity name is.你可以试试这个
u can try this