我可以在自定义应用程序类中定义一个静态应用程序对象以供 Android 中参考吗?

发布于 2025-01-08 05:36:18 字数 365 浏览 0 评论 0原文

我的问题是我有一些异步任务需要我的自定义应用程序对象来调用一些函数。每次我想创建一个异步任务时,我都必须传递到应用程序对象或当前上下文。

我在想如果我将应用程序对象设为静态会怎样。

类 MyApp 扩展应用程序 {

<块引用> <块引用>

静态 MyApp 应用程序;

公共 onCreate() { 应用程序=这个; }

}

,而不必传入上下文。

这样可以吗?有什么风险吗?

My problem is that I have some asynctasks which need my custom Application object to invove some functions. Eachtime I want to create an asynctask, I had to pass into the application object or current context into it.

I am thinking what if I made the application object static.

class MyApp extends Application {

static MyApp app;

public onCreate() {
app = this;
}

}

Then I can get this global application object (MyApp.app) without have to pass the context in.

is that ok? any risk?

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

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

发布评论

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

评论(1

甜妞爱困 2025-01-15 05:36:18

其实你不需要这样做
只需创建 Application 的子类并在清单中声明您自己的应用程序即可。

<Application
    android:name="blah.YourApplication">
</Application>

然后要访问它,您只需要一个 Activity 或 Service 实例来 getApplication() 并将其转换为您的“YourApplication”类。

由于您想要访问 AsyncTask 子类中的“YourApplication”,因此您应该将启动 AsyncTask 的服务或活动传递给“AsyncTask”子类,以便您可以访问其中的“YourApplication”。

You actually don't need to do that,
just create a subclass of Application and declare your own application in the manifest.

<Application
    android:name="blah.YourApplication">
</Application>

then to access it, you just need an Activity or Service instance to getApplication() and cast it to your "YourApplication" class.

Since you want to access "YourApplication" in an AsyncTask subclass, you should pass the service or activity that started your AsyncTask to your "AsyncTask" subclass so that you could access "YourApplication" inside.

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