デバイスがスリープ モードになったときにアプリが閉じないようにする方法
user1662302
質問する
1604 次
1 に答える
0
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;
}
}
開発者の皆さん、頑張ってください!
于 2015-02-04T19:53:51.543 に答える