1

我正在使用带有 RingtonePreference 的 RingtoneManager。当我使用默认铃声时,没有问题,但是当我使用配置的铃声时,它会播放几分钟......我不知道歌曲的持续时间是几分钟还是循环播放......

这是我的代码:

private static void playNotificationSound(Context context) {
    RingtoneManager rm  = new RingtoneManager(context);
    String ringtone = MySharedPreferences.ringtone(context);
    Uri uri = null;
    if(ringtone == null)
        uri = RingtoneManager
            .getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    else
        uri = Uri.parse(ringtone);
    if (uri != null) {
        Ringtone rt = RingtoneManager.getRingtone(context, uri);
        if (rt != null) {
            rt.setStreamType(AudioManager.STREAM_NOTIFICATION);
            rt.play();
        }
    }
}

我用它来播放带有通知的歌曲,但我不想让手机播放 5 分钟...

4

3 回答 3

1

尝试添加以下行。

ringtoneManager.stopPreviousRingtone();
于 2012-11-22T12:19:24.430 回答
0

我找到了另一个解决方案,我设置了 notification.sound = uri; 并且不再使用 RingtoneManager。

与 notification.flags |= Notification.FLAG_AUTO_CANCEL | Notification.FLAG_ONLY_ALERT_ONCE;

但歌曲仍然循环播放。也许铃声真的是5分钟长?或者是否可以将铃声配置为循环歌曲?

于 2012-11-22T10:21:30.427 回答
0

你能用这样的线程吗?

if (rt != null) {
                rt.setStreamType(AudioManager.STREAM_NOTIFICATION);

                rt.play();
            }

            Thread myThread = new Thread() {

                int wait = 0;

                @Override
                public void run() {
                    try {
                        super.run();

                        while (wait < 5000) {
                            sleep(500);
                            wait += 500;
                        }
                    } catch (Exception e) {

                    } finally {
                        if (rt.isPlaying())
                            rt.stop();

                    }
                }
            };
            myThread.start();
于 2012-11-22T09:37:24.013 回答