Android - уведомление переднего плана отменяется при удалении приложения из последних приложений

1

Я делаю приложение для музыкального плеера, запускаю сервис переднего плана для процесса воспроизведения музыки. но когда приложение удалено из последних приложений, уведомление на переднем плане отменяется, а музыка все еще играет! , что означает обслуживание переднего плана без уведомления. я пытался: setAutoCancel(false) и setOnGoing(true) при создании Intificationance NotificationCompat.Builder и оба не работали.

мой код создания уведомления

public class MediaStyleHelper {
public static final String CHANNEL_ID = "2229";
public static NotificationCompat.Builder from(
        Context context, MediaSessionCompat mediaSession) {
    MediaControllerCompat controller = mediaSession.getController();
    MediaMetadataCompat mediaMetadata = controller.getMetadata();
    MediaDescriptionCompat description = mediaMetadata.getDescription();

    NotificationCompat.Builder builder = new NotificationCompat.Builder(context , CHANNEL_ID);
    builder
            .setContentTitle(description.getTitle())
            .setContentText(description.getSubtitle())
            .setSubText(description.getDescription())
            .setLargeIcon(description.getIconBitmap())
            .setContentIntent(controller.getSessionActivity())
            .setDeleteIntent(
                    MediaButtonReceiver.buildMediaButtonPendingIntent(context, PlaybackStateCompat.ACTION_STOP))
            .setAutoCancel(false)
            .setVisibility(NotificationCompat.VISIBILITY_PUBLIC);

    return builder;
}

}

услуга в манифесте:

<service android:name=".services.AudioPlayerService"
        android:exported="false"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.MEDIA_BUTTON" />
            <action android:name="android.media.AUDIO_BECOMING_NOISY" />
            <action android:name="android.media.browse.MediaBrowserService" />
        </intent-filter>
    </service>

и запуск кода переднего плана

private void showPlayingNotification() {
    NotificationCompat.Builder builder = MediaStyleHelper.from(this, mMediaSessionCompat);
    if( builder == null ) {
        return;
    }

    builder.addAction(new NotificationCompat.Action(android.R.drawable.ic_media_pause, getString(R.string.pause), MediaButtonReceiver.buildMediaButtonPendingIntent(this, PlaybackStateCompat.ACTION_PLAY_PAUSE)));
    builder.setStyle(new androidx.media.app.NotificationCompat.MediaStyle().setShowActionsInCompactView(0).setMediaSession(mMediaSessionCompat.getSessionToken()));
    builder.setSmallIcon(R.drawable.ic_play_circle_outline);
    builder.setOngoing(true);
    startForeground(1,builder.build());
    //NotificationManagerCompat.from(AudioPlayerService.this).notify(1, builder.build());
}

обратите внимание, что я создал канал уведомлений, используя код:

private void createNotificationChannel() {
    // Create the NotificationChannel, but only on API 26+ because
    // the NotificationChannel class is new and not in the support library
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence name = getString(R.string.channel_name);
        String description = getString(R.string.channel_description);
        int importance = NotificationManager.IMPORTANCE_DEFAULT;
        NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
        channel.setDescription(description);
        channel.setSound(null,null);
        // Register the channel with the system; you can't change the importance
        // or other notification behaviors after this
        NotificationManager notificationManager = getSystemService(NotificationManager.class);
        notificationManager.createNotificationChannel(channel);
    }
}
Теги:
android-service
android-notifications

1 ответ

0
Лучший ответ

решение состояло в том, чтобы вызвать startService(Intent) из активности. даже если я позвонил MediaBrowserCompat.connect() и медиа воспроизводится правильно, мне нужно было вызвать startService(Intent) ! код после этого редактирования:

public void initMediaBrowserCompat(){
    startService(new Intent(this,AudioPlayerService.class));
    mMediaBrowserCompat = new MediaBrowserCompat(this, new ComponentName(this, AudioPlayerService.class),
            mMediaBrowserCompatConnectionCallback, getIntent().getExtras());
    mMediaBrowserCompat.connect();

}

Ещё вопросы

Сообщество Overcoder
Наверх
Меню