Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
538 views
in Technique[技术] by (71.8m points)

仿MIUI、微信来电通知无法解决通知折叠到通知列表

求相助,希望有大神帮我解决下,我想做一个类似小米来电的通知功能,我发现小米的来电通知不会自动折叠到通知列表,而我无论如何设置,我的通知都会折叠通知列表里,求助解决方案

如图:来电通知并不会折叠到下拉通知列表

图片说明

我的通知部分代码:

    public static void buildCallNotification(Service service, final PendingIntent resultPendingIntent) {
        Log.d(TAG,"buildCallNotification");
        NotificationCompat.Builder builder;
        if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            builder = new NotificationCompat.Builder(service, NotificationChannelsUtils.CALL_CHANNEL);
        } else {
            builder = new NotificationCompat.Builder(service);
        }
        builder.setSmallIcon(getSmallIconResId())
                .setContentTitle(service.getResources().getText(R.string.channel_call))
                .setCategory(NotificationCompat.CATEGORY_CALL)
                .setContentIntent(resultPendingIntent)
                .setTicker(service.getResources().getText(R.string.channel_call))
                .setFullScreenIntent(resultPendingIntent,true)
                .setPriority(NotificationCompat.PRIORITY_MAX)
                .setOngoing(true);

        Notification notification = builder.build();
        service.startForeground(NOTIFICATION_ID_INCOMINGCALL, notification);
    }

渠道部分代码:

    @RequiresApi(api = Build.VERSION_CODES.O)
    private static NotificationChannel getCallChannel(Context context){
        NotificationChannel notificationChannel = new NotificationChannel(CALL_CHANNEL, context.getString(R.string.channel_call), NotificationManager.IMPORTANCE_HIGH);
        notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
        notificationChannel.setSound(null, null);
        notificationChannel.setImportance(NotificationManager.IMPORTANCE_HIGH);
        return notificationChannel;
    }

问题出现的环境背景及自己尝试过哪些方法

相关代码

粘贴代码文本(请勿用截图)

你期待的结果是什么?实际看到的错误信息又是什么?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...