1

我有两个活动,家庭作业和更接近。我的作业中有一首歌正在播放,但是当按下按钮时,媒体播放器会暂停并打开关闭。在我的 onResume 作业功能中,我试图再次启动媒体播放器,但没有声音播放。有人可以帮我解决这个问题吗?

package com.cis.lab4;

import java.io.IOException;

import android.media.MediaPlayer;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.content.res.AssetFileDescriptor;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class Homework extends Activity {

    final MediaPlayer mediaplayer = new MediaPlayer();
    int media_length;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_homework);

        setContentView(R.layout.activity_homework);
        AssetFileDescriptor afd;
        try {
            afd = getAssets().openFd("rev.mp3");
            mediaplayer.setDataSource(afd.getFileDescriptor(),afd.getStartOffset(),afd.getLength());
            mediaplayer.prepare();
        } catch (IOException e) {
            e.printStackTrace();
        }
        mediaplayer.start();
        Button next = (Button) findViewById(R.id.homeworkContinue);
        final Intent openCloser = new Intent(this, EndActivity.class);
        next.setOnClickListener(new OnClickListener(){

            @Override
            public void onClick(View v) {
                mediaplayer.pause();
                media_length = mediaplayer.getCurrentPosition();
                startActivity(openCloser);

            }

        });
    }

    public void onResume(Bundle savedInstanceState){
        super.onResume();
        mediaplayer.seekTo(media_length);
        mediaplayer.start();
    }


}
4

2 回答 2

3

尝试在onPause()活动的方法中而不是在onClick()事件中保存媒体状态。这保证了每次onResume()调用onPause()will 都会在此之前调用(除了第一次运行 Activity,在这种情况下,onResume()将在onStart().

于 2013-04-19T22:11:39.463 回答
0

你为什么不尝试检查onResume()如果媒体播放器为空。

如果它为空,那么您将需要调用mediaPlayer.prepare().

也许把这段代码放到它自己的函数中:

try {
    afd = getAssets().openFd("rev.mp3");
    mediaplayer.setDataSource(afd.getFileDescriptor(),afd.getStartOffset(),afd.getLength());
    mediaplayer.prepare();
} catch (IOException e) {
    e.printStackTrace();
}

这样你就可以在onResume()/中调用它onCreate()。在onResume()尝试做空检查。如果它为空,则调用您的新函数来准备 mediaPlayer。

于 2013-04-19T22:09:38.997 回答