Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fddcb061 authored by Jeff Brown's avatar Jeff Brown Committed by Android (Google) Code Review
Browse files

Merge "Improve support for external keyboards."

parents cd5e8b60 9065504a
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -2611,6 +2611,10 @@ public final class ViewRoot extends Handler implements ViewParent,
            captureKeyLog("captureDispatchKeyEvent", event);
            captureKeyLog("captureDispatchKeyEvent", event);
        }
        }


        // Make sure the fallback event policy sees all keys that will be delivered to the
        // view hierarchy.
        mFallbackEventHandler.preDispatchKeyEvent(event);

        // Deliver the key to the view hierarchy.
        // Deliver the key to the view hierarchy.
        if (mView.dispatchKeyEvent(event)) {
        if (mView.dispatchKeyEvent(event)) {
            finishKeyEvent(event, sendDone, true);
            finishKeyEvent(event, sendDone, true);
+1 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@
# limitations under the License.
# limitations under the License.


#
#
# Logitech Revue keyboard
# Logitech Revue Wireless keyboard
#
#
# Notes:
# Notes:
# - The GRAVE key is emulated by the keyboard.
# - The GRAVE key is emulated by the keyboard.
+11 −7
Original line number Original line Diff line number Diff line
@@ -16,16 +16,20 @@
# Used by Android.mk and keyboards.mk.
# Used by Android.mk and keyboards.mk.


keylayouts := \
keylayouts := \
    Apple_Wireless_Keyboard.kl \
    AVRCP.kl \
    Generic.kl \
    Generic.kl \
    Logitech_USB_Receiver.kl \
    AVRCP.kl \
    Motorola_Bluetooth_Wireless_Keyboard.kl \
    qwerty.kl \
    qwerty.kl \
    qwerty2.kl
    Vendor_046d_Product_c532.kl \
    Vendor_05ac_Product_0239.kl \
    Vendor_22b8_Product_093d.kl


keycharmaps := \
keycharmaps := \
    Generic.kcm \
    Generic.kcm \
    Virtual.kcm \
    qwerty.kcm \
    qwerty.kcm \
    qwerty2.kcm \
    qwerty2.kcm
    Virtual.kcm

keyconfigs := \
    qwerty.idc \
    qwerty2.idc
Loading