簡體   English   中英

設備進入睡眠模式時如何保持android應用打開

[英]how to Keep android app open when device goes to sleep mode

如何防止設備進入睡眠模式時關閉我的應用程序,我觀察到我的設備每次進入睡眠模式時都會關閉我的應用程序,但是我希望設備進入睡眠模式時仍能打開它

http://developer.android.com/training/basics/activity-lifecycle/index.html

查看OnPause()函數!

@Override
public void onPause() {
super.onPause();  // Always call the superclass method first

// Release the Camera because we don't need it when paused
// and other activities might need to use it.
if (mCamera != null) {
    mCamera.release()
    mCamera = null;
}

}

祝您好運!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM