下一个活动中的蓝牙连接

发布于 2024-11-15 08:22:41 字数 112 浏览 1 评论 0原文

我在主要活动中设置了与设备的蓝牙连接 - 有效。

现在我想在第二个活动中使用已连接设备的套接字。

我怎样才能转移它? getExtra 不起作用:/

谢谢, 前缀

i set up a bluetooth connection to a device in my mainactivity - that works.

now i wanna use the socket of the connected device in a second activity.

how can i transfer it? getExtra wont work :/

Thanks,
prexx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女猫性小仙女 2024-11-22 08:22:41

您应该使用本地绑定服务。在此处查看有关它们的更多信息:绑定服务

这个想法是,Service 将打开并管理蓝牙连接,而 Activity 将绑定到该服务并通过扩展 IBinder 的接口获取蓝牙套接字。这样,活动的生命周期就不会干扰蓝牙套接字的生命周期,而且您可以与任意数量的活动共享您的套接字。

You should use Local Bounded Service. See more about them here: Bounded Services.

The idea is that Service will open and manage bluetooth connection, while Activities will bind to this service and get bluetooth socket via interface that extends IBinder. This way lifecycle of Activity will not interfere with lifecycle of bluetooth socket, plus you can share you socket with as many activities as you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文