在 Android 中,媒体播放器不工作

发布于 2024-10-30 17:27:32 字数 277 浏览 1 评论 0原文

当我尝试以下操作时,媒体播放器无法工作:

             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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末染殇 2024-11-06 17:27:32

这可能是因为此代码位于另一个类/匿名类内部。无论您的活动名称是什么,您都不应该使用 this,而应该使用 MyActivityClassName.this

It is probably because this code is located inside of another class / anonymous class. You should not use this, but MyActivityClassName.this whatever your activity name is.

[浮城] 2024-11-06 17:27:32

你可以试试这个

MediaPlayerInstance.play(this, R.raw.mh);

u can try this

MediaPlayerInstance.play(this, R.raw.mh);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文