как играть музыку по уведомлению в андроид? - PullRequest
1 голос
/ 28 ноября 2011

Я использовал уведомление, которое вызывает службу проигрывателя, и этот проигрыватель должен воспроизводить музыку. Но я не знаю, как играть в фоновом режиме?

Вы можете увидеть мой код следующий:

1.Первый файл вызова проигрывателя сервиса

Intent i=new Intent(this, PlayerService.class);

i.putExtra(PlayerService.EXTRA_PLAYLIST, "main");
i.putExtra(PlayerService.EXTRA_SHUFFLE, true);

startService(i);

2. Второй файл - это класс для воспроизведения музыки

public class PlayerService extends Service {
    public static final String EXTRA_PLAYLIST="EXTRA_PLAYLIST";
    public static final String EXTRA_SHUFFLE="EXTRA_SHUFFLE";
    private boolean isPlaying=false;

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        String playlist=intent.getStringExtra(EXTRA_PLAYLIST);
        boolean useShuffle=intent.getBooleanExtra(EXTRA_SHUFFLE, false);

        play(playlist, useShuffle);       
        return(START_NOT_STICKY);
    }

    @Override
    public void onDestroy() {
        stop();
    }

    @Override
    public IBinder onBind(Intent intent) {
        return(null);
    }

    private void play(String playlist, boolean useShuffle) {
        if (!isPlaying) {
            Log.w(getClass().getName(), "Got to play()!");
            isPlaying=true;

            Notification note=new Notification(R.drawable.stat_notify_chat, "Can you hear the music?", System.currentTimeMillis());
            Intent i=new Intent(this, FakePlayer.class);
            i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP);

            PendingIntent pi=PendingIntent.getActivity(this, 0,i, 0);

            note.setLatestEventInfo(this, "Fake Player","Now Playing: \"Ummmm, Nothing\"", pi);
            note.flags|=Notification.FLAG_NO_CLEAR;

            startForeground(1337, note);
        }
    }
    private void stop() {
        if (isPlaying) {
            Log.w(getClass().getName(), "Got to stop()!");
            isPlaying=false;
            stopForeground(true);
        }
    }
}

Спасибо и всего наилучшего, Омид

1 Ответ

1 голос
/ 18 апреля 2012

Возможно, вы уже нашли ответ, но, возможно, он будет полезен кому-то еще.А именно, класс уведомлений имеет метод sound , который требует путь к файлу, который вы хотите воспроизвести при получении уведомления.См. примеры уведомлений (особенно параграф «Добавление звука») для получения дополнительной информации.

...