安卓蓝牙
如何使用蓝牙远程启动不同 Android 设备中的活动?有什么办法吗?如果是这样,有人可以建议示例代码吗?
How can I remotely start an activity in a different android device using Bluetooth? Is there any way? If so can anyone suggest sample code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是“控制另一部手机”吗?
蓝牙将是物理连接的手段,但我不知道是否在 Android 上实现自己的服务器,从而处理启动应用程序等操作是否会是一件容易的事情......而且我自愿不谈论安全问题?那里有专家吗?
you mean "take control over another phone" in other terms ?
Bluetooth would be the mean of physical connection, but i don't know if implementing your own server on Android and thus handling operations like starting apps and so on would be an easy thing... and i'm voluntarily not speaking about security issues ? any experts in there ?
是的,您可以做到这一点,一旦您熟悉了蓝牙,这将非常容易。您必须使用蓝牙 (RFCOMM) 在两台设备上建立服务器/客户端连接。客户端将向服务器发送一条消息(通过按下按钮或其他东西),服务器解析该消息并执行(启动某个活动)。看一下 BluetoothChat 示例。
Yes, you can do this, it's pretty easy once you're familiar with bluetooth. You'll have to make server/client connection on both devices with bluetooth (RFCOMM). The client will send a message to the server (by pressing a button or something), server parses the message and executes (starts a certain activity). Take a look at the BluetoothChat example.