自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
#include <
input.h
>
|
input_device_identifier_t
*(*
|
create_device_identifier
)(
input_host_t
*host, const char *name, int32_t product_id, int32_t vendor_id,
input_bus_t
bus, const char *unique_id)
|
|
input_device_definition_t
*(*
|
create_device_definition
)(
input_host_t
*host)
|
|
input_report_definition_t
*(*
|
create_input_report_definition
)(
input_host_t
*host)
|
|
input_report_definition_t
*(*
|
create_output_report_definition
)(
input_host_t
*host)
|
|
void(*
|
free_report_definition
)(
input_host_t
*host,
input_report_definition_t
*report_def)
|
|
void(*
|
input_device_definition_add_report
)(
input_host_t
*host,
input_device_definition_t
*d,
input_report_definition_t
*r)
|
|
void(*
|
input_report_definition_add_collection
)(
input_host_t
*host,
input_report_definition_t
*report,
input_collection_id_t
id, int32_t arity)
|
|
void(*
|
input_report_definition_declare_usage_int
)(
input_host_t
*host,
input_report_definition_t
*report,
input_collection_id_t
id,
input_usage_t
usage, int32_t min, int32_t max, float resolution)
|
|
void(*
|
input_report_definition_declare_usages_bool
)(
input_host_t
*host,
input_report_definition_t
*report,
input_collection_id_t
id,
input_usage_t
*usage, size_t usage_count)
|
|
input_device_handle_t
*(*
|
register_device
)(
input_host_t
*host,
input_device_identifier_t
*id,
input_device_definition_t
*d)
|
|
void(*
|
unregister_device
)(
input_host_t
*host,
input_device_handle_t
*handle)
|
|
input_report_t
*(*
|
input_allocate_report
)(
input_host_t
*host,
input_report_definition_t
*r)
|
|
void(*
|
input_report_set_usage_int
)(
input_host_t
*host,
input_report_t
*r,
input_collection_id_t
id,
input_usage_t
usage, int32_t value, int32_t arity_index)
|
|
void(*
|
input_report_set_usage_bool
)(
input_host_t
*host,
input_report_t
*r,
input_collection_id_t
id,
input_usage_t
usage, bool value, int32_t arity_index)
|
|
void(*
|
report_event
)(
input_host_t
*host,
input_device_handle_t
*d,
input_report_t
*report)
|
|
input_property_map_t
*(*
|
input_get_device_property_map
)(
input_host_t
*host,
input_device_identifier_t
*id)
|
|
input_property_t
*(*
|
input_get_device_property
)(
input_host_t
*host,
input_property_map_t
*map, const char *key)
|
|
const char *(*
|
input_get_property_key
)(
input_host_t
*host,
input_property_t
*property)
|
|
const char *(*
|
input_get_property_value
)(
input_host_t
*host,
input_property_t
*property)
|
|
void(*
|
input_free_device_property
)(
input_host_t
*host,
input_property_t
*property)
|
|
void(*
|
input_free_device_property_map
)(
input_host_t
*host,
input_property_map_t
*map)
|
|
分配设备定义,用于描述设备的输入功能。一个设备定义可用于注册任意数量的设备。
定义位于文件
input.h
的
424
行。
使用指定的属性创建设备标识符。唯一 ID 应为一个字符串,用于精确标识给定硬件。例如,通过蓝牙连接的输入设备可以使用其 MAC 地址作为唯一 ID。
定义位于文件
input.h
的
416 行
。
分配输入报告(HAL 将使用该报告告知主机传入的输入事件)或输出报告(主机将使用该报告告知 HAL 所需的状态更改,例如设置 LED)。
定义位于文件
input.h
的
431
行。
检索设备的一组属性。返回的 input_property_map_t* 可用于通过 input_get_device_property 回调查询特定属性。
定义位于文件
input.h
的
509
行。
获取输入属性的键。如果属性为 NULL,则返回 NULL。返回的 const char* 归 input_property_t 所有。
定义位于文件
input.h
的
524
行。
获取输入属性的值。如果属性为 NULL,则返回 NULL。返回的 const char* 归 input_property_t 所有。
定义位于文件
input.h
的
530
行。
添加具有指定 arity 和 ID 的集合。集合用于描述一组逻辑分组的属性,例如单指触摸的 X 坐标和 Y 坐标,或键盘上的一组按键。arity 用于声明此集合在其所附加的任何报告中将显示的重复实例数量。该 ID 用于描述集合所代表的分组类型。例如,能够同时报告最多 2 根手指的触摸屏可能包含一个包含 X 和 Y 坐标、基数为 2 且 ID 为 INPUT_COLLECTION_USAGE_TOUCHSCREEN 的集合。在给定报告中,任何给定 ID 只能出现一次。
定义位于文件
input.h
的
455
行。
使用给定属性声明 int 用法。报告和集合定义了声明使用情况的位置。
定义位于文件
input.h
的
462
行。
使用给定属性声明一组布尔用法。报告和集合定义了声明用途的位置。
定义位于文件
input.h
的
470
行。
注册给定的输入设备定义。这会通知主机已连接输入设备,并提供其所有功能的说明。
定义位于文件
input.h
的
479
行。
此结构体的文档是根据以下文件生成的:
-
hardware/libhardware/include/hardware/
input.h
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-03-26。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-03-26。"],[],[]]