OnStart()的作用

看过很多书籍资料,通常都有这么一句话。”onStart()用于在活动从不可见变为可见时,加载可见资源“ 。但加载如layout、View等可见资源等工作是在onCreate阶段完成的啊,onStart到底能做什么呢?

所以这句话很不好理解。之后在网上看到一段话:
For example, you should unregister listeners for GPS, sensors, etc in onStop() and register again in onStart(). If you register it in onCreate() and unregister in onDestroy(), then GPS service will work always and it will drain battery.
我们如果要使用gps或则其他传感器时,应该在onStart函数中注册监听器,而在OnStop函数中注销监听器。使得我们仅在活动的可见生命周期中调用系统资源,节约能耗。

从上面我们能够得出结论,当我们需要在活动的可见生命周期中使用系统资源时,应该在OnStart中注册。

你可能感兴趣的:(OnStart()的作用)