谁能告诉我是否有任何方法可以找出蓝牙 QWERTY 键盘是否连接到 android 设备.
我尝试使用 getResources().getConfiguration.keyboard,但无论是否连接键盘,它总是给我相同的值.
谢谢
实现此目的的一种方法是将 android:configChanges="keyboard" 添加到 AndroidManifest.xml 文件中的活动中.p>
有了这个,你可以覆盖 onConfigurationChanged 每当插入或拔出键盘时都会调用它
@Override公共无效 onConfigurationChanged(配置新配置){如果(newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO){//正在连接一个硬件键盘}否则如果(newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES)//一个硬件键盘正在断开连接}}Can anyone please tell me if there is any way we can find out if a bluetooth QWERTY keyboard is attached to android device.
I tried working with getResources().getConfiguration.keyboard, but it always gives me the same value whether key board is attached or not.
Thanks
One way to do this is adding android:configChanges="keyboard" to the activity in your AndroidManifest.xml file.
With this you can override onConfigurationChanged which will be called whenever a keyboard is plugged in or plugged out
@Override
public void onConfigurationChanged(Configuration newConfig)
{
if(newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO) {
//A hardware keyboard is being connected
}
else if(newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES)
//A hardware keyboard is being disconnected
}
}
这篇关于查找是否在 Android 中连接了外部 USB 或蓝牙键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
出现键盘时如何在iOS上调整UITextView的大小?How to resize UITextView on iOS when a keyboard appears?(出现键盘时如何在iOS上调整UITextView的大小?)
如何可靠地检测 iOS 9 上是否连接了外部键盘?How to reliably detect if an external keyboard is connected on iOS 9?(如何可靠地检测 iOS 9 上是否连接了外部键盘?)
如何关闭 iOS 键盘?How do I dismiss the iOS keyboard?(如何关闭 iOS 键盘?)
是否可以在 ios 越狱后使用外部键盘模拟触摸事件Is possible to simulate touch event using an external keyboard on ios jailbroken?(是否可以在 ios 越狱后使用外部键盘模拟触摸事件?)
Android 上的数字软键盘Numeric Soft Keyboard on Android(Android 上的数字软键盘)
如何从 iOS 应用程序上的自定义键盘检索击键?How do I retrieve keystrokes from a custom keyboard on an iOS app?(如何从 iOS 应用程序上的自定义键盘检索击键?)