摘要: fragment的生命周期和普通的生命周期没有什么不同,只是多了一个oncreateview 和ondestoryview的方法基本也是oncreateoncreateviewonstartonresume上面是打开页面的过程onpause这个时候页面已经没有了,但是下面的几个生命周期并没有执行,还是需要一段时间才能够执行onstopondestoryviewondestory到这个时候生命周期就算完全走结束了。当停留在这个界面上,直到自动休眠的生命周期是onpause然后点亮屏幕的一瞬间就执行了onresume方法,即使点亮的是锁屏页面,但是也执行了onresume方法按home键的生命周期 阅读全文
posted @ 2013-10-11 10:49 小二叉 阅读(157) 评论(0) 推荐(0)
摘要: public abstract voidsetComponentEnabledSetting(ComponentNamecomponentName, int newState, int flags)这个函数的英文注释是,Set the enabled setting for a package component (activity, receiver, service, provider). This setting will override any enabled state which may have been set by the component in its manifest 阅读全文
posted @ 2013-08-23 15:45 小二叉 阅读(289) 评论(0) 推荐(0)