android – 通知setLights()默认值?

我想创建一个自定义通知.所以我想改变灯光和音调.
我使用NotificationCompat.Builder.

现在我想通过setLights()更改Lights;
工作良好.但我想设置onMS和offMS的认值.我还没有找到相关的东西.

任何人都可以帮我找到认值吗?
以下是该文档:http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#setLights(int,int,int)

解决方法

请参阅 Android source以获得答案:
<!-- Default color for notification LED. -->
<color name="config_defaultNotificationColor">#ffffffff</color>
<!-- Default LED on time for notification LED in milliseconds. -->
<integer name="config_defaultNotificationLedOn">500</integer>
<!-- Default LED off time for notification LED in milliseconds. -->
<integer name="config_defaultNotificationLedOff">2000</integer>

但是,不同的ROM可能具有不同的值.例如,我的config_defaultNotificationLedOff返回5000.所以你可能想在运行时获取它们:

Resources resources = context.getResources(),systemResources = Resources.getSystem();
notificationBuilder.setLights(
    ContextCompat.getColor(context,systemResources
        .getIdentifier("config_defaultNotificationColor","color","android")),resources.getInteger(systemResources
        .getIdentifier("config_defaultNotificationLedOn","integer",resources.getInteger(systemResources
        .getIdentifier("config_defaultNotificationLedOff","android")));

根据diff,这些属性保证存在于Android 2.2(API级别8)上.

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...