关于mp3播放器

时间:2015-06-18 12:09:03

标签: android

我正在使用简单的Mp3播放器。 A.mp3位于SD卡上。

当我点击按钮播放时,注意到了,为什么?

我不知道它有什么问题。

这里是MainActivity文件:

    public class MainActivity extends Activity implements OnClickListener{
       private Button play;
       private Button pause;
       private Button stop;
       private MediaPlayer mediaPlayer = new MediaPlayer();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        play =(Button)findViewById(R.id.play);
        pause = (Button) findViewById(R.id.pause);
        stop = (Button) findViewById(R.id.stop);
        play.setOnClickListener(this);
        pause.setOnClickListener(this);
        stop.setOnClickListener(this);

        initMediaPlayer(); 

    }
    private void initMediaPlayer()
    {
        try {
            File file =new   File(Environment.getExternalStorageDirectory(),"A.mp3");
            mediaPlayer.setDataSource(file.getPath());
            mediaPlayer.prepareAsync();

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.play:
            if (!mediaPlayer.isPlaying()) {
                mediaPlayer.start(); 
            }
            break;
        case R.id.pause:
            if (mediaPlayer.isPlaying()) {
                mediaPlayer.pause(); 
            }
            break;
        case R.id.stop:
            if (mediaPlayer.isPlaying()) {
                mediaPlayer.reset(); 
                initMediaPlayer();
            }
            break;
        default:
            break;
        }
    }

    @Override
    protected void onDestroy() {

        super.onDestroy();

        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
        }
    }

 }

以下是Layout文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"
    android:layout_height="match_parent" >
<Button
    android:id="@+id/play"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Play" />
<Button
    android:id="@+id/pause"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Pause" />
<Button
    android:id="@+id/stop"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Stop" />

我发现sdcard的路径是&#34; / storage / sdcard1 /&#34;。所以我使用了mediaPlayer.setDataSource(&#34; /storage/sdcard1/A.mp3");但它是相同的.setDataSource没有运行

1 个答案:

答案 0 :(得分:0)

通过评论中的回复,我更新了我的答案 1 ..

private void initMediaPlayer()
{
    try {
        File file =new   File(Environment.getExternalStorageDirectory(),"A.mp3");
        mediaPlayer.setDataSource(file.getPath());
        mediaPlayer.prepare(); // Replace this line.

    } catch (Exception e) {
        e.printStackTrace();
    }
}

您可以尝试使用

public void prepareAsync ()

而不是准备。由于prepare()使用可以阻止程序的同步线程。

http://developer.android.com/reference/android/media/MediaPlayer.html#prepareAsync()

继续使用Async Prepare方法,效率更高。

2 ..
此外,如果您设置OnErrorListener,则会在设置数据源时检查错误。

public void setOnErrorListener (MediaPlayer.OnErrorListener listener)

http://developer.android.com/reference/android/media/MediaPlayer.html#setOnErrorListener%28android.media.MediaPlayer.OnErrorListener%29

3 ..
如果您出现错误:

Tag MediaPlayer start called in state 0;Tag MediaPlayer error(-38,0)

这表明MediaPlayer的状态未被初始化。你可以在这里看到状态:

http://developer.android.com/reference/android/media/MediaPlayer.html

4 ..
确保您具有以正确格式设置数据源的参数:

  

setDataSource(FileDescriptor),或setDataSource(String),或   setDataSource(Context,Uri)或setDataSource(FileDescriptor,long,   long)将处于空闲状态的MediaPlayer对象传输到   初始化状态。

5 ..
然后使用OnPrepared()收听者http://developer.android.com/reference/android/media/MediaPlayer.OnPreparedListener.html

然后,您可以安全地拨打mediaplayer.start()

6 ..
另请参阅此问题Media Player called in state 0, error (-38,0)

7 ..
如果这不能解决问题,请告诉我。