我编写的自定义相机应用程序在屏幕锁定后停止提供预览(通过按下锁定按钮或等待几分钟)。我没有得到异常,这使得很难找到问题。
android 屏幕锁定(如果这是正确的术语)是否暂停/停止/...我的应用程序(活动)?
如果是这种情况,原因可能是我的 onPause/onResume 方法吗?还是更可能是另一个原因?
提前致谢
我编写的自定义相机应用程序在屏幕锁定后停止提供预览(通过按下锁定按钮或等待几分钟)。我没有得到异常,这使得很难找到问题。
android 屏幕锁定(如果这是正确的术语)是否暂停/停止/...我的应用程序(活动)?
如果是这种情况,原因可能是我的 onPause/onResume 方法吗?还是更可能是另一个原因?
提前致谢
我遇到了同样的问题并使用以下步骤修复了它:
我创建了我的相机预览并将其添加到父活动的 onResume() 中的容器 FrameLayout 中。就像是:
public void onResume{
super.onResume();
mCamera = Camera.open();
if(null != mCamera){
mCamera.setDisplayOrientation(90);
mPreview = new CameraOverlay(getActivity(), mCamera);
frLyParent.addView(mPreview);
}
}
我删除了 onPause() 中的视图。这修复了冻结。
public void onPause(){
super.onPause();
if(null != mCamera){
mCamera.release();
mCamera = null;
}
frLyParent.removeView(mPreview);
mPreview = null;
}
其中CameraOverlay() 是扩展SurfaceView 并实现SurfaceHolder.Callback 的类。如果您需要该实施,请告诉我。
这是我的,它确实有效:-)
@Override
public void onResume() {
super.onResume();
try {
camera = Camera.open();
holder.addCallback(this);
surface.setVisibility(View.VISIBLE);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void onPause() {
try {
surface.setVisibility(View.GONE);
holder.removeCallback(this);
camera.release();
} catch (Exception e) {
e.printStackTrace();
}
super.onPause();
}
在onResume()
方法中添加这一行:
surfaceView.setVisibility(View.VISIBLE);
在onPaused()
方法中添加这一行:
surfaceView.setVisibility(View.GONE);
谢谢,我对此进行了修改,它也适用于我
我在打开相机之前添加了mPreview.removeView(mPreview.mSurfaceView);
inonpause()
和mPreview.addView(mPreview.mSurfaceView);
in 。onResume()
addView(mSurfaceView);
我在预览课上也删了。