使用 new 而不是意图在另一个活动中创建一个活动是否符合规定?

发布于 2024-12-03 15:18:20 字数 289 浏览 0 评论 0原文

我正在使用我继承的 Android 代码。在应用程序的主要活动中,它正在使用 new 创建一个新活动:

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    downloadActivity = new DownloadActivity(this);            
}

这是犹太洁食吗?这对我来说感觉不对,因为我一直认为创建活动的最佳方式是通过意图。

I'm working with Android code that I've inherited. In the application's main activity, it's creating a new activity using new:

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    downloadActivity = new DownloadActivity(this);            
}

Is this kosher? It doesn't feel right to me as I've always thought the best way to create an Activity is through an Intent.

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

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

发布评论

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

评论(2

北音执念 2024-12-10 15:18:20

对我来说闻起来像火腿。你为什么要这么做?我假设开发人员想要使用活动中定义的方法和字段...但是创建一个不同的类并在那里做所有事情更符合Kosher(glatt)要求

Smells like ham to me. Why would you want to do that? I'm assuming the dev wants to use the methods and fields defined in the activity... But it's more Kosher (glatt) to create a different class and do everything there

终弃我 2024-12-10 15:18:20

启动新的Activity通常是通过Intents完成的。我看不出你有任何理由尝试其他方式。

Starting a new Activity is usually done via Intents. I can't see any reason for you to try doing it the other way.

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