web-dev-qa-db-ja.com

Android Oreo NotificationがシステムUIをクラッシュさせる

古いAPIで通知を機能させることができましたが、Oreoでは機能しません。通知を作成すると、アプリは引き続き正常に動作しますが(logcatにメッセージが表示されません)、アクティビティの実行中にSystemUIがクラッシュして無限のサイクルで再起動します。これは、systemuiプロセスのlogcatのエラーです。

Java.lang.IllegalArgumentException: width and height must be > 0

私のコード:

private void showPlayingNotification() {
        NotificationCompat.Builder builder = mNotificationUtils.getAndroidChannelNotification(this, "Play", mMediaSessionCompat);
        if( builder == null ) {
            Log.i("Play Notification","No notification found!");
            return;
        }

        mNotificationUtils.getManager().notify(101,builder.build()); 
}

作成したMediaPlayerServiceのonCreateでmNotificationUtilsを初期化しました。

public class NotificationUtils extends ContextWrapper {

    private NotificationManager mManager;
    public static final String AUDIO_CHANNEL_ID = "com.liftyourheads.dailyreadings.dailyReadingsAudio";
    public static final String AUDIO_CHANNEL_NAME = "Daily Readings Audio Stream";

    public NotificationUtils(Context base) {
        super(base);
        createChannels();
    }

    public void createChannels() {

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            // create Android channel
            NotificationChannel dailyReadingsAudioChannel = new NotificationChannel(AUDIO_CHANNEL_ID,
                    AUDIO_CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH);
            getManager().createNotificationChannel(dailyReadingsAudioChannel);

        }
    }

    public NotificationManager getManager() {
        if (mManager == null) {
            mManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        }
        return mManager;
    }

    public NotificationCompat.Builder getAndroidChannelNotification(Context context, String action, MediaSessionCompat mediaSession) {

        if (action.equals("Play")) {
            return MediaStyleHelper.from(context, mediaSession)
                    .addAction(new NotificationCompat.Action(Android.R.drawable.ic_media_pause, "Pause", MediaButtonReceiver.buildMediaButtonPendingIntent(this, PlaybackStateCompat.ACTION_PLAY_PAUSE)))
                    .setStyle(
                            new Android.support.v4.media.app.NotificationCompat.MediaStyle()
                                    .setShowActionsInCompactView(0)
                                    .setMediaSession(mediaSession.getSessionToken()))
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentText("Content Text")
                    .setContentTitle("Content Title")
                    .setChannelId(AUDIO_CHANNEL_ID);

        } else if (action.equals("Pause")) {

            return MediaStyleHelper.from(context, mediaSession)
                    .addAction(new NotificationCompat.Action(Android.R.drawable.ic_media_play, "Play", MediaButtonReceiver.buildMediaButtonPendingIntent(this, PlaybackStateCompat.ACTION_PLAY_PAUSE)))
                    .setStyle(
                            new Android.support.v4.media.app.NotificationCompat.MediaStyle()
                                    .setShowActionsInCompactView(0)
                                    .setMediaSession(mediaSession.getSessionToken()))
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentText("Content Text")
                    .setContentTitle("Content Title")
                    .setChannelId(AUDIO_CHANNEL_ID);

        }

        return null;

    } }
14
Jake Madden

アイコンをmipmapからdrawableに切り替えます。詳細は この問題 を参照してください。

28
CommonsWare

この問題は、Android O.の新しいアダプティブアイコンに関連しています。

それを解決するには、すべてのアダプティブアイコンをクラシックアイコンに置き換えます。ミップマップまたはドローアブルに関係なく

参考資料: リンク1リンク2

7

通知を作成しようとすると、アプリがクラッシュしました。私の場合は、Android Studioサンプルプロジェクト、「基本アクティビティ」AndroidManifest.xmlを含む)を使用していました。ミップマップ/ ic_launcherとミップマップ/ ic_launcher_roundは、アプリアイコンとして使用されます。

<application
    Android:name=".DriveMeApp"
    Android:allowBackup="true"
    Android:icon="@mipmap/ic_launcher"
    Android:label="@string/app_name"
    Android:roundIcon="@mipmap/ic_launcher_round"
    Android:supportsRtl="true"
    Android:theme="@style/AppTheme">

プロジェクトには、上記のic_launcher.xmlおよびic_launcher_round.xmlアダプティブアイコンが含まれています。クラッシュの問題を解決するには、両方のファイルを削除する必要がありました。アダプティブアイコンファイルを削除した後、pngファイルをアプリアイコンとして使用する必要があります。

5
ChinLoong