gpt4 book ai didi

android - 使用蓝牙鼠标/演示器控制 Android 应用程序

转载 作者:行者123 更新时间:2023-11-29 22:02:32 27 4
gpt4 key购买 nike

这不是一个容易搜索的问题,因为大多数回复都涉及使用手机作为指针,但我想做的是使用鼠标/演示器/指针来控制 Android 平板电脑。我买了这个 Targus Bluetoogh Presenter (Amazon)我想连接到我的 7 英寸平板电脑上的应用程序。既然我已经花了两个小时在 Google 和 stackoverflow 上搜索都没有成功,我想我应该寻求帮助。

蓝牙演示器工作正常。它就像鼠标一样,我可以滚动、单击并运行我的应用程序。但这是一个应用程序,其中平板电脑将在光天化日之下安装在移动的船上,并且使用鼠标指针的这种精细增益调整是行不通的。我敢肯定,即使我可以控制指针,我也可能根本看不到它。这是一款高可行性应用程序,黑色背景上有 1 英寸高的白色字母。您只是看不到微小的鼠标指针。

我需要的是让演示器上的两个可编程按钮将焦点移到应用程序上的几个按钮上,然后让另一个按钮按下它们。现在,演示器上的一个可编程按钮突出显示了我的应用程序上的一个按钮,但使用右键单击只会触发鼠标指针下方的任何按钮。我在想我需要两个可编程按钮来前进和输入,但这只是一个猜测。我愿意接受任何可行的解决方案。

我什至不知道从哪里开始。我应该在我的应用程序中编程吗?我需要一个界面应用程序来对按钮进行编程吗? Play 商店中有什么东西可以满足我的要求吗?当我搜索蓝牙鼠标时,我看到的都是使用手机控制计算机的应用程序。不是我想要的方向。我需要一些帮助或指导。

最佳答案

好的,我想我已经为您准备了一个可行的解决方案。原来我有一些错误。对于一个 dispatchKeyEvent()onKeyDown() 更好,因为它阻止了音量按钮按下进入系统(在我的设备上,它们会发出哔声,但没有体积变化)。结果还表明您需要使用 Instrumentation类发送欺骗性 KeyEvent,而不是手动调用 dispatchKeyEvent()。 Instrumentation 类也不会从主线程进行方法调用,因此您必须将调用包装在它们自己的线程中。

我还了解了为什么您设备上的某些按钮会发送两个按键事件 117 和 71。它们匹配 shift+[ 为了我们的目的,我们可以忽略shift 按下并使用 [ 为我们采取行动。

这是一个重写的 dispatchKeyEvent() 方法,似乎对我有用。

@Override
public boolean dispatchKeyEvent(KeyEvent ke){
int keyCode = ke.getKeyCode();
if(ke.getAction() == KeyEvent.ACTION_DOWN){
if(keyCode == KeyEvent.KEYCODE_VOLUME_DOWN)
{
/**************************************
* What ever code snippet you put
* here will run whenever you press the
* volume down button on your presenter
* device
**************************************/
return true;
}else if(keyCode == KeyEvent.KEYCODE_VOLUME_UP)
{
/**************************************
* What ever code snippet you put
* here will run whenever you press the
* volume up button on your presenter
* device
**************************************/
return true;
}else if (keyCode == 30){
/**************************************
* What ever code snippet you put
* here will run whenever you press the
* left programmable button on your
* presenter device
**************************************/
return true;
}
else if (keyCode == 59){
/**************************************
* This was an attempt to get it to ignore
* the shift keypress coming from the
* left/right arrow keys on the devices
* ignoring that would in theory make
* those keys function as up/down focus
* movers. Didn't seem to work though.
* you could probably remove this branch
* of the if statement if you want.
* However since those buttons do send
* key events to the device it should
* should still be possible override these
* buttons somehow.
**************************************/
return true;
}
}else if(ke.getAction() == KeyEvent.ACTION_UP){
/**************************************
* This section will catche the "release"
* events from all of the keys we are using
* and tell the system that we've handled
* them. So that the system will not pass
* the events along to anything else.
**************************************/
if(keyCode == KeyEvent.KEYCODE_VOLUME_DOWN)
{
/**************************************
* If you had any reason / desire to
* you could put a code snipet here and it
* would be run when you let go after
* pressing the volume down button on your
* presenter device.
**************************************/
return true;
}else if(keyCode == KeyEvent.KEYCODE_VOLUME_UP)
{
return true;
}else if (keyCode == 59){
return true;
}else if (keyCode == 30) {
return true;
}
}

/**************************************
* The following line is needed so that
* the system will treat any key events
* that we aren't interested in normally.
* i.e. the back button on the tablet, by
* by calling super.dispatchKeyEvent(), we
* ensure that the back button still behaves
* like normal.
**************************************/
return super.dispatchKeyEvent(ke);
}

这将允许您控制演示设备上的 3 个按钮(提高音量、降低音量和左侧可编程按钮),方法是将您的代码 fragment 放在 if 语句的适当分支中,您可以制作其中任何一个3 个按钮随心所欲。

我已经创建了一个实现此功能的测试项目,您可以 download the zipped project folder here如果你想看到整个事情。在此测试项目中,我已将其设置为音量上/下将用作方向键上/下,这将允许您将焦点移动到 Activity 中的不同 View 。

这是您可以放在 if 语句的一个分支中以欺骗方向键箭头按钮的代码:

new Thread(new Runnable() {         
@Override
public void run() {
new Instrumentation().sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
}
}).start();

您可以将 KeyEvent.KEYCODE_DPAD_DOWN 替换为您想要的任何其他按键事件,例如 KeyEvent.KEYCODE_DPAD_UPKeyEvent.KEYCODE_DPAD_CENTER 后者其中将充当选择按钮,该按钮将向当前具有焦点的按钮发送点击事件。

关于android - 使用蓝牙鼠标/演示器控制 Android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11596697/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com