阅读(2936)
赞(7)
鸿蒙OS EventCreator
2022-10-13 11:14:30 更新
EventCreator
java.lang.Object
|---ohos.multimodalinput.event.EventCreator
public final class EventCreator
extends Object
提供创建事件的方法。 目前只提供了创建 KeyEvent 事件的方法。
Since:
4
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
static OptionalKeyEvent | createKeyEvent(int action, int keyCode) | 根据指定的操作和键码创建 KeyEvent 对象。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
方法详情
createKeyEvent
public static OptionalKeyEvent createKeyEvent(int action, int keyCode)
根据指定的操作和键码创建 KeyEvent 对象。
参数:
参数名称 | 参数描述 |
---|---|
action | 指示对密钥执行的操作。 该值可以是 KeyEvent.KEY_PRESSED 或 KeyEvent.KEY_RELEASED。 |
keyCode | 表示键的键码。 |
返回:
返回一个 KeyEvent 对象; 如果 action 不是有效值,或者 keyCode 值小于或等于 0 或大于系统中定义的最大 keycode (KeyEvent.NOW_MAX_KEY),则返回一个空对象。
Since:
4