2025년 3월 27일부터 AOSP를 빌드하고 기여하려면 aosp-main
대신 android-latest-release
를 사용하는 것이 좋습니다. 자세한 내용은 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
파일의
409
번 줄에 정의되어 있습니다.
기기의 입력 기능을 설명하는 기기 정의를 할당합니다. 기기 정의는 원하는 만큼 기기를 등록하는 데 사용할 수 있습니다.
input.h
FILE의
424
라인에 정의가 있습니다.
지정된 속성으로 기기 식별자를 만듭니다. 고유 ID는 특정 하드웨어를 정확하게 식별하는 문자열이어야 합니다. 예를 들어 블루투스를 통해 연결된 입력 장치는 MAC 주소를 고유 ID로 사용할 수 있습니다.
input.h
FILE의
416
행에 정의가 있습니다.
HAL이 수신 입력 이벤트를 호스트에 알리는 데 사용할 입력 보고서 또는 호스트가 원하는 상태 변경사항 (예: LED 설정)을 HAL에 알리는 데 사용할 출력 보고서를 할당합니다.
input.h
파일의
431
줄에 정의가 있습니다.
지정된 보고서에 설명된 대로 모든 상태가 포함된 보고서를 할당합니다.
input.h
FILE의
488
행에 정의가 있습니다.
지정된 입력 장치에 보고서를 추가합니다.
input.h
FILE의
442
행에 정의가 있습니다.
input_property_t*를 해제합니다.
input.h
파일의
535
번 행에 정의가 있습니다.
input_property_map_t*를 해제합니다.
input.h
파일의
540
번 행에 정의가 있습니다.
지정된 키를 사용하여 기기의 속성을 검색합니다. 키가 없으면 NULL을 반환하고,
input_free_device_property()
를 사용하여 해제해야 하는 input_property_t* 를 반환합니다. 상응하는 input_property_map_t가 해제된 후 input_property_t를 사용하는 것은 정의되지 않습니다.
input.h
파일의
517
행에 정의가 있습니다.
기기의 속성 집합을 검색합니다. 반환된 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 좌표 또는 키보드의 키 집합과 같이 논리적으로 그룹화된 일련의 속성을 설명합니다. 어리티는 이 컬렉션의 반복 인스턴스가 연결된 보고서에 표시되는 횟수를 선언합니다. ID는 컬렉션으로 표현되는 그룹 유형을 설명합니다. 예를 들어 최대 2개의 손가락을 동시에 보고할 수 있는 터치 스크린에는 X 및 Y 좌표, 2의 항목 수, INPUT_COLLECTION_USAGE_TOUCHSCREEN ID가 있는 컬렉션이 있을 수 있습니다. 특정 ID는 특정 보고서에 한 번만 표시될 수 있습니다.
input.h
FILE의
455
행에 정의가 있습니다.
지정된 속성을 사용하여 int 사용을 선언합니다. 보고서 및 수집은 사용이 선언되는 위치를 정의합니다.
input.h
FILE의
462
라인에 정의가 있습니다.
지정된 속성을 사용하여 불리언 사용 집합을 선언합니다. 보고서 및 수집은 사용이 선언되는 위치를 정의합니다.
input.h
파일의
470
행에 정의가 있습니다.
보고서에 불리언 사용 값을 추가합니다.
input.h
파일의
499
행에 정의가 있습니다.
보고서에 int 사용량 값을 추가합니다.
input.h
FILE의
493
행에 정의가 있습니다.
지정된 입력 기기 정의를 등록합니다. 이렇게 하면 입력 장치가 연결되었음을 호스트에 알리고 모든 기능에 관한 설명을 제공합니다.
input.h
파일의
479
번 행에 정의가 있습니다.
이 구조체에 관한 문서는 다음 파일에서 생성되었습니다.
-
hardware/libhardware/include/hardware/
input.h
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-03-26(UTC)
[[["이해하기 쉬움","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"]],["최종 업데이트: 2025-03-26(UTC)"],[],[]]