本文介绍了如何发挥媒体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


如何在application.I播放媒体文件正与以下code尝试,但不知道为什么它不适合我的工作。

Hi How to play media file in an application.I am trying it with the following code but do not know why it is not working for me

player= new MediaPlayer().create(context, R.raw.lonely);
player.start();
player.release();

帮助我。
先谢谢了。

Help me.Thanks in advance.

推荐答案

我还没有与的MediaPlayer 出场,但我会尝试没有发布()电话。 不使用它。和说,这是被称为一个清除方法播放后:

I haven't played with MediaPlayer, but I would try without the release() call. This example doesn't use it. And the docs say it's a cleanup method to be called after the playback:

释放资源
  此MediaPlayer对象。它是
  好的做法,称这
  方法当你使用的做
  MediaPlayer的。

这篇关于如何发挥媒体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 18:12