控制 Android 的前 LED 灯

Controling Android's front led light

我正在尝试在用户按下某个按钮时在前面的 LED 上实现 1 秒的红色闪烁。但是我很难找到关于如何访问和使用前置 LED 的文档、教程甚至代码示例(我指的是位于 "selfie" 相机和触摸屏附近的 LED)。

我看过使用手电筒和相机的示例 class(已弃用),但我认为这不是我要找的。

前面没有直达L.E.D。您可以为 L.E.D.

安排带有自定义颜色的通知
Notification.Builder builder = new Notification.Builder(context);
    builder.setContentIntent(pendingIntent)
        .setSmallIcon(R.drawable.ic_launcher)
        .setTicker("My Ticker")
        .setWhen(System.currentTimeMillis())
        .setAutoCancel(true)
        .setDefaults(Notification.DEFAULT_VIBRATE | Notification.DEFAULT_SOUND | Notification.FLAG_SHOW_LIGHTS)
        .setLights(0xff00ff00, 300, 100) // To change Light Colors
        .setContentTitle("My Title 1")
        .setContentText("My Text 1");
    Notification notification = builder.getNotification();

例如 L.E.D 的红色闪光灯:

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);
// Program the end of the light :
mCleanLedHandler.postDelayed(mClearLED_Task, LED_TIME_ON );
}

字体灯称为 Android 通知 LED,并非所有手机都有,控制它的唯一方法是通过启动通知。网上有一些教程展示了如何执行此操作,例如:http://androidblogger.blogspot.co.uk/2009/09/tutorial-how-to-use-led-with-android.html