1. 程式人生 > >android 按鍵對映qwerty.kl檔案中的WAKE和WAKE_DROPPED的定義

android 按鍵對映qwerty.kl檔案中的WAKE和WAKE_DROPPED的定義

android系統中,獲取到鍵盤的鍵值後,會搜尋/system/usr/keylayout/gpio-keys.kl這個檔案

key 115   VOLUME_UP         WAKE_DROPPED
key 114   VOLUME_DOWN       WAKE_DROPPED
key 102   HOME              WAKE

如果code與其中的鍵值相對應,android就會響應對應的按鍵資訊。

WAKE: When this key is pressed while the device is asleep, the device will wake up and the key event gets sent to the app.

WAKE_DROPPED: When this key is pressed while the device is asleep, the device will wake up and the key event does not get sent to the app.