Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我的应用程序类的 onCreate 何时被调用,它是由于用户打开应用程序而创建的,还是由于接收到广播/作业开始等某些原因而创建的。请帮助。
您可以在 pref 中设置布尔变量。在广播/服务中将此变量设置为 true。而 InsideonCreate方法只是检查该值。并在使用后将其设置为falseonCreate
onCreate
更好的方法是flag/tag从您的服务中设置一个,如下面的帖子所述。并且在活动检查中flag/tag是否可用并执行必要的操作。
flag/tag
如何从服务获取数据到活动