Класс устройства ввода: SOURCE_BLUETOOTH_STYLUS
SOURCE_BLUETOOTH_STYLUS
Блютуз стилус - Bluetooth stylus
dec = 0 hex = 0
Устройство ввода — это стилус Bluetooth. Обратите внимание, что этот бит просто указывает, что устройство ввода способно получать ввод от стилуса Bluetooth. Чтобы определить, было ли данное событие касания создано стилусом, проверьте тип инструмента. возвращается MotionEvent#getToolType(int) для каждого отдельного указателя. Одно событие касания может иметь несколько указателей с разными типами инструментов, например, событие, которое имеет один указатель с типом инструмента MotionEvent#TOOL_TYPE_FINGER и другой указатель с типом инструмента MotionEvent#TOOL_TYPE_STYLUS. важно проверить тип инструмента каждого указателя, независимо от источника, сообщаемого MotionEvent#getSource().Стилус Bluetooth обычно получает информацию о нажатии и состоянии кнопки от самого стилуса, а остальные получает из другого источника.Например , стилус Bluetooth, используемый в сочетании с сенсорным экраном, будет определять свое положение контакта и размер указателя на сенсорном экране и может быть не более точным, чем другие инструменты, такие как как пальцы
(The input device is a Bluetooth stylus. Note that this bit merely indicates that an input device is capable of obtaining input from a Bluetooth stylus. To determine whether a given touch event was produced by a stylus, examine the tool type returned by MotionEvent#getToolType(int) for each individual pointer. A single touch event may multiple pointers with different tool types, such as an event that has one pointer with tool type MotionEvent#TOOL_TYPE_FINGER and another pointer with tool type MotionEvent#TOOL_TYPE_STYLUS. So it is important to examine the tool type of each pointer, regardless of the source reported by MotionEvent#getSource(). A bluetooth stylus generally receives its pressure and button state information from the stylus itself, and derives the rest from another source. For example, a Bluetooth stylus used in conjunction with a touchscreen would derive its contact position and pointer size from the touchscreen and may not be any more accurate than other tools such as fingers)