这样理解Activity类似于iOS中的ViewController就可以了吗?
这样理解Activity类似于iOS中的ViewController就可以了吗?
我很困惑接受 Android 中的术语概念,如活动、服务等......
Is this OK to understand that Activity is similar to ViewController in iOS?
I am confused to accept a concept of terms in Android as Activity, Service etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我想说 Activity 和 ViewController 非常相似。只有一个很大的区别。在 iOS 中,您有一个委托来控制应用程序的状态,例如新的 ViewController 已启动或应用程序已完成。在 Android 中,您可以通过 onCreate()、onPause() 等为每个 Activity 单独执行此操作。
Yes, I would say that Activity and ViewController are rather similar. There is just one BIG difference. In iOS you have a delegate to control your application's state, like a new ViewController has started or the application is finished. In Android you do this separately for each activity via onCreate(), onPause(), etc.