如何使用应用程序接口将蓝牙套接字传递给另一个活动

发布于 2024-10-20 02:17:36 字数 166 浏览 4 评论 0原文

因此,根据我收集的信息,套接字连接既不可序列化,也不可分割,但我需要将蓝牙连接传递给另一个活动。我不想作为中间人编写服务,所以请不要将此作为解决方案发布。我听说有一种方法可以使用自定义应用程序接口来传递这些类型的对象,但我一生都找不到这样的工作示例。我看过很多文档,大意是“这是可能的”,但没有任何说明如何做到这一点。

so from what i gather, Socket connections are neither serializable or parcelable, but i need to pass a bluetooth connection to another Activity. i do not want to write a Service as a middle man, so please don't post this as a solution. i've heard that there is a way to pass these types of Objects using a custom Application interface, but i cannot, for the life of me, find a working example of this. i've seen plenty of documentation that says something to the effect of "this is possible" but nothing showing how to do it.

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

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

发布评论

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

评论(1

诗酒趁年少 2024-10-27 02:17:36

定义您的应用程序类:

class MyApplication extends Application{
    // your fields here
}

name 属性添加到应用程序清单中。

<application android:name=".MyApplication" ../>

在活动中使用它:

MyApplication myapp = (MyApplication) getApplication();

Define your app class:

class MyApplication extends Application{
    // your fields here
}

Add name attribute to app manifest.

<application android:name=".MyApplication" ../>

Use it in Activity:

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