更改通知的LED颜色



我基本上只是在尝试Android开发,几天前我发现了一款名为"Go SMS Pro"的应用程序,它可以设置不同颜色(蓝色、绿色、橙色、粉色和浅蓝色)的通知。所以,我试着在自己的应用程序中自己做这件事,但我无法改变内部LED的颜色和闪烁。我目前使用这个代码:

public class MainActivity extends Activity {
  static final int NOTIFICATION_ID = 1;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener(buttonOnClick);
  }
  public OnClickListener buttonOnClick = new OnClickListener() {
    @Override
    public void onClick(View v) {
      String ns = Context.NOTIFICATION_SERVICE;
      NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
      Notification notification = new Notification(R.drawable.icon, "Hello", System.currentTimeMillis());
      notification.flags = Notification.FLAG_SHOW_LIGHTS | Notification.FLAG_AUTO_CANCEL;
      notification.ledARGB = Color.BLUE;
      notification.ledOnMS = 1000;
      notification.ledOffMS = 300;
      Context context = getApplicationContext();
      CharSequence contentTitle = "My notification";
      CharSequence contentText = "Hello World!";
      Intent notificationIntent = new Intent(MainActivity.this, MainActivity.class);
      PendingIntent contentIntent = PendingIntent.getActivity(MainActivity.this, 0, notificationIntent, 0);
      notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
      mNotificationManager.notify(NOTIFICATION_ID, notification);
    }
  };
}

但正如我所说,它并没有按照我想要的方式工作;相反,它只是以常规的绿色闪烁,并带有默认的延迟,而不是我在代码中设置的延迟。

有人能看到我的代码出了什么问题吗,或者知道我是否必须做其他事情来实现这一点吗?

您可以使用以下代码:

private static final int LED_NOTIFICATION_ID= 0; //arbitrary constant
private void RedFlashLight() {
    NotificationManager nm = (NotificationManager) getSystemService( NOTIFICATION_SERVICE);
    Notification notif = new Notification();
    notif.ledARGB = 0xFFff0000;
    notif.flags = Notification.FLAG_SHOW_LIGHTS;
    notif.ledOnMS = 100; 
    notif.ledOffMS = 100; 
    nm.notify(LED_NOTIFICATION_ID, notif);
}

您可以在android.graphics.Color类中使用int属性来获取颜色(例如Color.WHITE

,而不是像示例所示那样使用ARGB值

Leds是安卓手机中一个非常非标准的功能。如果你依赖它们,你会错过很大一部分用户群(例如,考虑一下SGS手机,它甚至没有LED)。

也就是说,如果int字段ledARGB没有用处,您可能需要查看来自该APK的一些JNI调用。我的猜测是,根据运行的设备,它将有不同的方法。

您尝试过:.setLights(Color.BLUE,500500)吗?

在S3、N5、N4和Nexus上也能很好地工作。。

FLAG_SHOW_LIGHTS通知。Builder.setLights(int,int,int)自Android O(API 26级)以来已弃用。如果您计划在API 26级或更高版本中使用此功能,请查看通知频道

示例:

NotificationChannel mChannel = new NotificationChannel(id, name, importance);
.....
.....
mChannel.enableLights(true);
// Sets the notification light color for notifications posted to this
// channel, if the device supports this feature.
mChannel.setLightColor(Color.RED);

但在这个新的实现中,您可能无法控制毫秒上的LED&LED熄灭毫秒这将取决于硬件。

尝试使用十六进制颜色,包括一个alpha值并将默认值设置为0:

notification.defaults = 0;
notification.ledARGB = 0xff0000ff;

此外,通知界面上写着:

public int ledARGB
Since: API Level 1
The color of the led. The hardware will do its best approximation.

我假设你的硬件有所有的颜色,但可能没有。

对LED颜色的支持确实参差不齐。试着拔下USB电缆,并确保没有其他应用程序试图同时修改LED。同时关闭屏幕。

看看下面的源代码。

NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(ctx)
                        .setPriority(Notification.PRIORITY_HIGH)
                        .setSmallIcon(getNotificationIcon())
                        .setColor(0xff493C7C)
                        .setContentTitle(ctx.getString(R.string.app_name))
                        .setContentText(msg)
                        .setDefaults(Notification.DEFAULT_SOUND)
                        .setLights(0xff493C7C, 1000, 1000)
                        .setStyle(new NotificationCompat.BigTextStyle().bigText(styledMsg));

我试过下面的代码,灯对我来说很好。我的手机是Nexus 6P:

mBuilder.setContentTitle("APP_NAME")
                .setContentText(msg)
                .setContentIntent(PendingIntent.getActivity(mCtxt, UUID.randomUUID().hashCode(), new Intent(mCtxt, ReceivePushActivity.class), Notification.FLAG_AUTO_CANCEL))
                .setWhen(System.currentTimeMillis())
                .setPriority(Notification.PRIORITY_DEFAULT)
                .setAutoCancel(true)
                //.setDefaults(Notification.DEFAULT_ALL)
                .setVibrate(new long[] {0, 1000, 200,1000 })
                .setLights(Color.MAGENTA, 500, 500)
                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                .setSmallIcon(R.mipmap.notify_logo);
        Notification ntf = mBuilder.build();
//        ntf.flags = Notification.DEFAULT_ALL;
//        ntf.flags = Notification.FLAG_ONLY_ALERT_ONCE;
//        ntf.flags = Notification.FLAG_AUTO_CANCEL;
        mNotificationManager.notify(notifyId, ntf);

也就是说,删除"DEFAULT_ALL"设置。

相关内容

  • 没有找到相关文章

最新更新