Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-05 Thread Alex Blasche
45:23 AM To: Jérôme Godbout Cc: Alex Blasche; Qt Project MailingList Subject: Re: [Interest] Detect connected Bluetooth keyboard under Android @Alex: i tried your suggestion but the problem is that the BluetoothHIDDevice class was introduced in API level 28, but I need Level 24. Maybe this can be

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-03 Thread Roman Wüger
not be easily monitored. > > -Original Message- > From: Interest On Behalf > Of Roman Wüger > Sent: November 1, 2018 5:58 AM > To: Alex Blasche > Cc: Qt Project MailingList > Subject: Re: [Interest] Detect connected Bluetooth keyboard under Android > > Hi Alex,

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-01 Thread Jérôme Godbout
be easily monitored. -Original Message- From: Interest On Behalf Of Roman Wüger Sent: November 1, 2018 5:58 AM To: Alex Blasche Cc: Qt Project MailingList Subject: Re: [Interest] Detect connected Bluetooth keyboard under Android Hi Alex, thanks for the hint. My plan was that the user shoul

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-11-01 Thread Roman Wüger
Hi Alex, thanks for the hint. My plan was that the user should pair and connect the keyboard manually in the settings dialog. In the application i only want to know if a keyboard is connected, otherwise I will show an onscreen keyboard. Thanks Regards Roman > Am 30.10.2018 um 08:24 schrieb Al

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-10-30 Thread Alex Blasche
As a disclaimer I have not really done any HID work on Android, but based on the Android docs you need to use the BluetoothHidDevice class to interact with such keyboards. BluetoothHidDevice.Callback.onConnectionStateChanged is probably what you need. This Android API is not available via Qt AP