使用 new 而不是意图在另一个活动中创建一个活动是否符合规定?
我正在使用我继承的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说闻起来像火腿。你为什么要这么做?我假设开发人员想要使用活动中定义的方法和字段...但是创建一个不同的类并在那里做所有事情更符合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
启动新的
Activity
通常是通过Intents
完成的。我看不出你有任何理由尝试其他方式。Starting a new
Activity
is usually done viaIntents
. I can't see any reason for you to try doing it the other way.