7

我在一个Music从另一个中学调用的类中有一个媒体播放器Activity。它工作正常。

但是当屏幕关闭时(通过超时或按钮),音乐停止播放,当返回并尝试关闭活动时,程序会转到“应用程序无响应”,因为IllegalStateException类似mediaplayer.isPlaying().

如何防止媒体播放器在屏幕关闭时停止?

一定要通过服务吗??

假设答案是肯定的,我尝试将Music类转换为服务(见下文)。我还添加<service android:enabled="true" android:name=".Music" />Manifest.xml,并且我这样调用Music该类:

startService(new Intent(getBaseContext(), Music.class));
Music track = Music(fileDescriptor);

主 Activity 中仅有的 2 个新行是startService(new Intent(getBaseContext(), Music.class));stopService(new Intent(getBaseContext(), Music.class));,以及相应的导入。

但现在我收到InstantiationException错误,因为can't instantiate class在尝试启动服务时。我错过了什么?

这是一个例外:

E/AndroidRuntime(16642): FATAL EXCEPTION: main
E/AndroidRuntime(16642): java.lang.RuntimeException: Unable to instantiate service com.floritfoto.apps.ave.Music:                                                                             java.lang.InstantiationException: can't instantiate class com.floritfoto.apps.ave.Music; no empty constructor                                                                   
E/AndroidRuntime(16642):    at android.app.ActivityThread.handleCreateService(ActivityThread.java:2249)
E/AndroidRuntime(16642):    at android.app.ActivityThread.access$1600(ActivityThread.java:127)
E/AndroidRuntime(16642):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1213)
E/AndroidRuntime(16642):    at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(16642):    at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(16642):    at android.app.ActivityThread.main(ActivityThread.java:4507)
E/AndroidRuntime(16642):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(16642):    at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(16642):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:980)
E/AndroidRuntime(16642):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:747)
E/AndroidRuntime(16642):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(16642): Caused by: java.lang.InstantiationException: can't instantiate class com.floritfoto.apps.ave.Music; no empty constructor
E/AndroidRuntime(16642):    at java.lang.Class.newInstanceImpl(Native Method)
E/AndroidRuntime(16642):    at java.lang.Class.newInstance(Class.java:1319)
E/AndroidRuntime(16642):    at android.app.ActivityThread.handleCreateService(ActivityThread.java:2246)
E/AndroidRuntime(16642):    ... 10 more

这是 Music.class:

package com.floritfoto.apps.ave;

import java.io.FileDescriptor;
import java.io.IOException;

import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.os.IBinder;
import android.widget.Toast;

public class Music extends Service implements OnCompletionListener{
    MediaPlayer mediaPlayer;
    boolean isPrepared = false;

    //// TEstes de servico
    @Override
    public void onCreate() {
        super.onCreate();
        info("Servico criado!");
    }
    @Override
    public void onDestroy() {
        info("Servico fudeu!");
    }
    @Override
    public void onStart(Intent intent, int startid) {
        info("Servico started!");
    }   
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
    public void info(String txt) {
        Toast toast = Toast.makeText(getApplicationContext(), txt, Toast.LENGTH_LONG);
        toast.show();
    }
    //// Fim testes de servico

    public Music(FileDescriptor fileDescriptor){
        mediaPlayer = new MediaPlayer();
        try{
            mediaPlayer.setDataSource(fileDescriptor);
            mediaPlayer.prepare();
            isPrepared = true;
            mediaPlayer.setOnCompletionListener(this);
        } catch(Exception ex){
            throw new RuntimeException("Couldn't load music, uh oh!");
        }
    }

    public void onCompletion(MediaPlayer mediaPlayer) {
        synchronized(this){
            isPrepared = false;
        }
    }

    public void play() {
        if(mediaPlayer.isPlaying()) return;
        try{
            synchronized(this){
                if(!isPrepared){
                    mediaPlayer.prepare();
                }
                mediaPlayer.seekTo(0);
                mediaPlayer.start();
            }
        } catch(IllegalStateException ex){
            ex.printStackTrace();
        } catch(IOException ex){
            ex.printStackTrace();
        }
    }

    public void stop() {
        mediaPlayer.stop();
        synchronized(this){
            isPrepared = false;
        }
    }

    public void switchTracks(){
        mediaPlayer.seekTo(0);
        mediaPlayer.pause();
    }

    public void pause() {
        mediaPlayer.pause();
    }

    public boolean isPlaying() {
        return mediaPlayer.isPlaying();
    }

    public boolean isLooping() {
        return mediaPlayer.isLooping();
    }

    public void setLooping(boolean isLooping) {
        mediaPlayer.setLooping(isLooping);
    }

    public void setVolume(float volumeLeft, float volumeRight) {
        mediaPlayer.setVolume(volumeLeft, volumeRight);
    }

    public String getDuration() {
        return String.valueOf((int)(mediaPlayer.getDuration()/1000));
    }
    public void dispose() {
        if(mediaPlayer.isPlaying()){
            stop();
        }
        mediaPlayer.release();
    }
}
4

2 回答 2

6

Logcat 中的这一行是重要的:

Caused by: java.lang.InstantiationException: can't instantiate class com.floritfoto.apps.ave.Music; no empty constructor

您的服务需要另一个不带参数的构造函数:

public Music() {
    super("Music");
}

编辑

如果您想在屏幕关闭时继续播放音乐,使用服务是正确的方法。但是,手机会在屏幕关闭时尝试睡眠,这可能会中断您的MediaPlayer.

最可靠的解决方案是使用部分 WakeLock来防止设备在您播放音乐时休眠。WakeLock当您不主动播放音乐时,请务必正确释放;否则电池会耗尽。

您可能还想使用startForeground(),这将降低您的服务在内存压力时被杀死的风险。它还将通过在您的服务运行时显示持久通知来创建良好的用户体验。

实例化MusicMusic track = Music(fileDescriptor);可能会造成一些伤害。更好的方法是将文件描述符作为您传递给的Extrain传递:IntentstartService()

Intent serviceIntent = new Intent(this, Music.class);
serviceIntent.putExtra("ServiceFileDescriptor", fileDescriptor);
startService(serviceIntent);

Intent然后,在将文件描述符传递给您的服务方法时,从中检索文件描述符onStartCommand()

public int onStartCommand(Intent intent, int flags, int startId) {
    super.onStart();

    Bundle bundle = intent.getExtras();
    // NOTE: The next line will vary depending on the data type for the file
    // descriptor. I'm assuming that it's an int.
    int fileDescriptor = bundle.getIntExtra("ServiceFileDescriptor");
    mediaPlayer = new MediaPlayer();
    try {
        mediaPlayer.setDataSource(fileDescriptor);
        ...
    ...
    return START_STICKY;
}

这里有几点需要注意。我已将代码从您的原始构造函数(应该被删除)移动到onStartCommand(). 您也可以删除该onStart()方法,因为它只会在 2.0 之前的设备上调用。如果您想支持现代 Android 版本,则需要onStartCommand()改用。最后,START_STICKY返回值将确保服务保持运行,直到您stopService()从活动中调用。

编辑 2

使用服务使您的用户可以在活动之间移动而不会中断MediaPlayer. 您无法控制 anActivity将在内存中保留多长时间,但除非存在非常强大的内存压力,否则不会杀死active Service(尤其是如果您调用)。startForeground()

要在服务启动后进行交互MediaPlayer,您有几个选择。您可以通过创建Intents 并使用操作字符串(和/或一些额外内容)将其他命令传递给服务来告诉服务您希望它做什么。只需startActivity()使用 new 再次调用IntentonStartCommand()就会在服务中调用,此时您可以操作MediaPlayer. 第二个选项是使用绑定服务(例如此处)并在每次进入/离开需要与服务通信的活动时绑定/取消绑定。使用绑定服务“感觉”就像您在直接操作服务一样,但它也更复杂,因为您需要管理绑定和解除绑定。

于 2012-10-27T02:53:07.243 回答
1

as an option you can keep the screen activated to maintain the MediaPlayer reproducing the media:

 getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
于 2017-03-28T16:55:07.740 回答