首页 > 解决方案 > 如何启用 android 的状态 LED 或更改其颜色?

问题描述

我搜索了它,但我无法弄清楚!

有一些答案,但它们不适用于Android 8.0或更高版本。

我在阿里巴巴WhatsApp看到了这个功能!!

可以的话帮忙!这也可以帮助其他人。

我的代码:

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(getString(R.string.default_notification_channel_id), remoteMessage.getData().get("title"), NotificationManager.IMPORTANCE_DEFAULT);
            channel.enableLights(true);
            channel.setLightColor(0xff0000);
            channel.shouldShowLights();
            channel.canShowBadge();
            notificationManager.createNotificationChannel(channel);
        }

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "0")
            .setSmallIcon(R.drawable.ic_notification)
            .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_notification))
            .setContentTitle(remoteMessage.getData().get("title"))
            .setContentText(remoteMessage.getData().get("message"))
            .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
            .setPriority(NotificationCompat.PRIORITY_MAX)
            .setVibrate(new long[] {0, 1000, 200,1000 })
            .setChannelId(getString(R.string.default_notification_channel_id))
            .setLights(Color.RED, 100 , 100)
            .setAutoCancel(true);


        if (notificationManager != null) {
            Notification notification = notificationBuilder.build();
            notification.ledARGB = 0xFFff0000;
            notification.flags = Notification.FLAG_SHOW_LIGHTS;
            notification.ledOnMS = 100;
            notification.ledOffMS = 100;
            notificationManager.notify(new Random().nextInt(60000), notification);
        }

标签: android

解决方案



推荐阅读