是否可以在片段之间传递数据而不更改我所在的当前片段?

发布于 2025-01-11 19:39:11 字数 125 浏览 0 评论 0原文

我目前正在尝试制作一个通过蓝牙连接到树莓派并在它们之间发送数据的Android应用程序。我能够连接两个设备并发送数据,但只能在其中一个片段上发送。我是否可以将数据从另一个片段发送到我的蓝牙片段,而无需实际离开我所在的当前片段?先感谢您!

I am currently trying to make an Android Application that connects to a raspberry pi via bluetooth and send data between them. I am able to connect the two devices and send the data, but only on one of the fragments. Is it possible for me to send data from another fragment to my bluetooth one without actually leaving the current fragment I am on? Thank you in advance!

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

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

发布评论

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

评论(1

没有你我更好 2025-01-18 19:39:11

您可以创建一个对象并在其中保存数据,然后在第二个片段中访问该对象并收集数据。

在 Kotlin 中,它是:

object myObj {
    var data = "something"
}

获取它:

(ClassName where the Obj is located).myObj.data

You could create an object and save data there, then, in the 2nd fragment, access to this object and collect the data.

In Kotlin it would be:

object myObj {
    var data = "something"
}

To get it:

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