阅读(2995) (0)

鸿蒙OS Component.UnconsumedKeyEventListener

2022-09-05 10:17:20 更新

Component.UnconsumedKeyEventListener

public static interface Component.UnconsumedKeyEventListener

如果键盘事件没有被使用,则提供一个侦听器来调度键盘事件。

方法总结

修饰符和类型 方法 描述
boolean onUnconsumedKeyEvent(Component component, KeyEvent event) 如果键盘事件尚未被焦点组件使用,则在将键盘事件分派到此组件时调用。

方法详情

onUnconsumedKeyEvent

boolean onUnconsumedKeyEvent(Component component, KeyEvent event)

如果键盘事件尚未被焦点组件使用,则在将键盘事件分派到此组件时调用。 如果有来自不同组件的多个侦听器,则通知将在任何侦听器声明消费关键事件之前从上到下(按 z 顺序)发送到每个侦听器。

参数:

参数名称 参数描述
component 指示键事件被调度到的组件。
event 表示关键事件的所有信息。

返回:

如果侦听器已经消费了事件,则返回 true; 否则返回 false。