黑马程序员技术交流社区

标题: Android,如何暂停与恢复Activity [打印本页]

作者: SyouRai_Tsk    时间: 2014-8-2 19:14
标题: Android,如何暂停与恢复Activity
暂停与恢复Activity
Pause Your Activity[暂停你的Activity]@Overridepublic 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;    }}Resume Your Activity[恢复你的activity]@Overridepublic void onResume() {    super.onResume();  // Always call the superclass method first    // Get the Camera instance as the activity achieves full user focus    if (mCamera == null) {        initializeCamera(); // Local method to handle camera init    }}

作者: 不可言    时间: 2014-8-3 12:52
怎么没人回复
作者: _童金辉    时间: 2014-8-10 21:59
学习了               




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2