com.android.camera.Camera.java,主要的实现Activity,继承于ActivityBase。

ActivityBase

在ActivityBase中执行流程:

onCreate中进行判断是否是平板;

onResume中判断是否锁屏,锁屏&camera不存在时候,mOnResumePending置为true,否则置为false并执行doOnResume;

onWindowFocusChanged中判断是否获取到焦点&mOnResumePending,满足的话执行doOnResume;

onPause中将mOnResumePending置为false;

Camera.java

接下来分析Camera.java,执行流程:

1、onCreate

复制代码

// 获得摄像头的数量,前置和后置

getPreferredCameraId();

// 获得对焦设置eg:连续对焦或者其它

String[] defaultFocusModes = getResources().getStringArray(R.array.pref_camera_focusmode_default_array);

//实例化Focus管理对象

mFocusManager = new FocusManager(mPreferences, defaultFocusModes);

// 开启线程来启动摄像头

mCameraOpenThread.start();

// 是否是第三方应用启动拍照功能

mIsImageCaptureIntent = isImageCaptureIntent();

// 设置UI布局文件

setContentView(R.layout.camera);

if (mIsImageCaptureIntent) {

// 当第三方其送拍照,需要显示不同的UI,比如取消键盘

mReviewDoneButton = (Rotatable) findViewById(R.id.btn_done);

mReviewCancelButton = (Rotatable) findViewById(R.id.btn_cancel);

findViewById(R.id.btn_cancel).setVisibility(View.VISIBLE);

} else {

// 反之显示缩略图

mThumbnailView = (RotateImageView) findViewById(R.id.thumbnail);

mThumbnailView.enableFilter(false);

mThumbnailView.setVisibility(View.VISIBLE);

}

// 一个能旋转的dialog.比如相机设置的dialog,这个类实现了旋转的父类

mRotateDialog = new RotateDialogController(this, R.layout.rotate_dialog);

// 设置camera的ID,写道SharedPreference中

mPreferences.setLocalId(this, mCameraId);

// 更新preference

CameraSettings.upgradeLocalPreferences(mPreferences.getLocal());

// 获得相机数

mNumberOfCameras = CameraHolder.instance().getNumberOfCameras();

// 貌似是获得是否是快速拍照

mQuickCapture = getIntent().getBooleanExtra(EXTRA_QUICK_CAPTURE, false);

// 为当前的preview重置曝光值

resetExposureCompensation();

// 隐藏系统导航栏等

Util.enterLightsOutMode(getWindow());

//SurfaceView

SurfaceView preview = (SurfaceView) findViewById(R.id.camera_preview);

SurfaceHolder holder = preview.getHolder();

holder.addCallback(this);

holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

try {

// 这个join语句就是为了保证openCamera的线程执行完后,当前的线程才开始运行。主要是为了确保camera设备被打开了

mCameraOpenThread.join();

// 线程执行完后置为空来让系统回收资源

mCameraOpenThread = null;

if (mOpenCameraFail) {

// 打开camera失败,显示“无法连接到相机”

Util.showErrorAndFinish(this, R.string.cannot_connect_camera);

return;

} else if (mCameraDisabled) {

// 由于安全政策限制,相机已被停用

Util.showErrorAndFinish(this, R.string.camera_disabled);

return;

}

} catch (InterruptedException ex) {

// ignore

}

//开启显示的子线程

mCameraPreviewThread.start();

if (mIsImageCaptureIntent) {

//如果是第三方开启的 ,setupCaptureParams 设置拍照的参数

setupCaptureParams();

} else {

//设置ModePicker

mModePicker = (ModePicker) findViewById(R.id.mode_picker);

mModePicker.setVisibility(View.VISIBLE);

mModePicker.setOnModeChangeListener(this);

mModePicker.setCurrentMode(ModePicker.MODE_CAMERA);

}

mZoomControl = (ZoomControl) findViewById(R.id.zoom_control);

mOnScreenIndicators = (Rotatable) findViewById(R.id.on_screen_indicators);

mLocationManager = new LocationManager(this, this);

//摄像头ID

mBackCameraId = CameraHolder.instance().getBackCameraId();

mFrontCameraId = CameraHolder.instance().getFrontCameraId();

// 在startPreview里面有notify方法

synchronized (mCameraPreviewThread) {

try {

mCameraPreviewThread.wait();

} catch (InterruptedException ex) {

// ignore

}

}

// 初始化各种控制按钮

initializeIndicatorControl();

//初始化拍照声音

mCameraSound = new CameraSound();

try {

//确保显示

mCameraPreviewThread.join();

} catch (InterruptedException ex) {

// ignore

}

mCameraPreviewThread = null;

复制代码

2、surfaceCreated

啥都没做

3、surfaceChanged

复制代码

// 确保在holder中有surface

if (holder.getSurface() == null) {

Log.d(TAG, "holder.getSurface() == null");

return;

}

// We need to save the holder for later use, even when the mCameraDevice

// is null. This could happen if onResume() is invoked after this[!--empirenews.page--]

// function.

mSurfaceHolder = holder;

if (mCameraDevice == null) return;

if (mPausing || isFinishing()) return;

// Set preview display if the surface is being created. Preview was

// already started. Also restart the preview if display rotation has

// changed. Sometimes this happens when the device is held in portrait

// and camera app is opened. Rotation animation takes some time and

// display rotation in onCreate may not be what we want.

if (mCameraState == PREVIEW_STOPPED) {

startPreview();

startFaceDetection();

} else {

if (Util.getDisplayRotation(this) != mDisplayRotation) {

setDisplayOrientation();

}

if (holder.isCreating()) {

// Set preview display if the surface is being created and preview

// was already started. That means preview display was set to null

// and we need to set it now.

setPreviewDisplay(holder);

}

}

// If first time initialization is not finished, send a message to do

// it later. We want to finish surfaceChanged as soon as possible to let

// user see preview first.

if (!mFirstTimeInitialized) {

mHandler.sendEmptyMessage(FIRST_TIME_INIT);

} else {

initializeSecondTime();

}

复制代码

如果是第一次加载,则执行mHandler.sendEmptyMessage(FIRST_TIME_INIT); 对应处理的是initializeFirstTime();

复制代码

/**

* 初始化,第一次初始化

* // Snapshots can only be taken after this is called. It should be called

* // once only. We could have done these things in onCreate() but we want to

* // make preview screen appear as soon as possible.

*/

private void initializeFirstTime() {

if (mFirstTimeInitialized) return;

// Create orientation listenter. This should be done first because it

// takes some time to get first orientation.

mOrientationListener = new MyOrientationEventListener(Camera.this);

mOrientationListener.enable();

// Initialize location sevice.

boolean recordLocation = RecordLocationPreference.get(

mPreferences, getContentResolver());

// 初始化屏幕最上方的标志,比如开启了曝光值啊,什么的

initOnScreenIndicator();

// 位置服务

mLocationManager.recordLocation(recordLocation);

keepMediaProviderInstance();

// 检查存储空间和初始化储存目录

checkStorage();

// Initialize last picture button.

mContentResolver = getContentResolver();

if (!mIsImageCaptureIntent) { // no thumbnail in image capture intent

// 初始化缩略图

initThumbnailButton();

}

// Initialize shutter button.

// 初始化拍照按钮并设置监听事件

mShutterButton = (ShutterButton) findViewById(R.id.shutter_button);

mShutterButton.setOnShutterButtonListener(this);

mShutterButton.setVisibility(View.VISIBLE);

// Initialize focus UI.

mPreviewFrame = findViewById(R.id.camera_preview);

mPreviewFrame.setOnTouchListener(this);

// 聚焦框

mFocusAreaIndicator = (RotateLayout) findViewById(R.id.focus_indicator_rotate_layout);

CameraInfo info = CameraHolder.instance().getCameraInfo()[mCameraId];

boolean mirror = (info.facing == CameraInfo.CAMERA_FACING_FRONT);

mFocusManager.initialize(mFocusAreaIndicator, mPreviewFrame, mFaceView, this,

mirror, mDisplayOrientation);

// 初始化一个图片的保存线程

mImageSaver = new ImageSaver();

// 设置屏幕亮度

Util.initializeScreenBrightness(getWindow(), getContentResolver());

// 注册SD卡相关的广播,比如拔出存储卡什么的

installIntentFilter();

// 初始化缩放UI

initializeZoom();

// 更新屏幕上的闪光灯什么的标记

updateOnScreenIndicators();

// 开始面部检测

startFaceDetection();

// Show the tap to focus toast if this is the first start.

// 假如是第一次启动,提示用户“触摸对焦”

if (mFocusAreaSupported &&

mPreferences.getBoolean(CameraSettings.KEY_CAMERA_FIRST_USE_HINT_SHOWN, true)) {

// Delay the toast for one second to wait for orientation.

mHandler.sendEmptyMessageDelayed(SHOW_TAP_TO_FOCUS_TOAST, 1000);

}

mFirstTimeInitialized = true;

addIdleHandler();

}

复制代码

如果不是,则执行initializeSecondTime();

复制代码

/**

* // If the activity is paused and resumed, this method will be called in

* // onResume.

*/

private void initializeSecondTime() {

// Start orientation listener as soon as possible because it takes

// some time to get first orientation.

//方向翻转设置enable,其中包括翻转的时候的动画

mOrientationListener.enable();

// Start location update if needed.[!--empirenews.page--]

boolean recordLocation = RecordLocationPreference.get(

mPreferences, getContentResolver());

mLocationManager.recordLocation(recordLocation);

//设置SD卡广播

installIntentFilter();

mImageSaver = new ImageSaver();

//初始化Zoom

initializeZoom();

//mMediaProviderClient=媒体Provider对象

keepMediaProviderInstance();

//检查硬盘

checkStorage();

//淡出retake和done的Button

hidePostCaptureAlert();

if (!mIsImageCaptureIntent) {

//如果不是第三方开启,则更新缩略图

updateThumbnailButton();

mModePicker.setCurrentMode(ModePicker.MODE_CAMERA);

}

}

复制代码

4、surfaceDestroyed

stopPreview();

mSurfaceHolder = null;

android camera 拍照流程,Android -- Camera源码简析,启动流程相关推荐

  1. 【Android项目】本地FM收音机开发及源码简析

    [Android项目]本地FM收音机开发及源码简析 目录 1.概述 2.收音机的基本原理 3.收音机其他信息 RDS功能 4.Android开发FM收音机源码解析 5.App层如何设计本地FM应用 6 ...

  2. bluetoothd源码剖析(一)启动流程

    蓝牙系列: bluez调试笔记_weixin_41069709的博客-CSDN博客_bluezbluez移植https://blog.csdn.net/weixin_41069709/article/ ...

  3. ffmpeg实战教程(十三)iJKPlayer源码简析

    要使用封装优化ijk就必须先了解ffmpeg,然后看ijk对ffmpeg的C层封装! 这是我看ijk源码时候的笔记,比较散乱.不喜勿喷~ ijk源码简析: 1.ijkplayer_jni.c 封装的播 ...

  4. Log-Pilot 源码简析

    Log-Pilot 源码简析 简单介绍 源码简析 Pilot结构体 Piloter接口 main函数 Pilot.Run Pilot.New Pilot.watch Pilot.processEven ...

  5. 【Golang源码分析】Go Web常用程序包gorilla/mux的使用与源码简析

    目录[阅读时间:约10分钟] 一.概述 二.对比: gorilla/mux与net/http DefaultServeMux 三.简单使用 四.源码简析 1.NewRouter函数 2.HandleF ...

  6. django源码简析——后台程序入口

    django源码简析--后台程序入口 这一年一直在用云笔记,平时记录一些tips或者问题很方便,所以也就不再用博客进行记录,还是想把最近学习到的一些东西和大家作以分享,也能够对自己做一个总结.工作中主 ...

  7. (Ajax)axios源码简析(三)——请求与取消请求

    传送门: axios源码简析(一)--axios入口文件 axios源码简析(二)--Axios类与拦截器 axios源码简析(三)--请求与取消请求 请求过程 在Axios.prototype.re ...

  8. java ArrayList 概述 与源码简析

    ArrayList 概述 与源码简析 1 ArrayList 创建 ArrayList<String> list = new ArrayList<>(); //构造一个初始容量 ...

  9. Spring Boot源码简析 @EnableTransactionManagement

    相关阅读 Spring Boot源码简析 事务管理 Spring Boot源码简析 @EnableAspectJAutoProxy Spring Boot源码简析 @EnableAsync Sprin ...

  10. Android进阶——Small源码分析之启动流程详解

    前言 插件化现在已经是Android工程师必备的技能之一,只是学会怎么使用是不行的,所以蹭有时间研究一下Small的源码.对于插件化主要解决的问题是四大组件的加载和资源的加载,读懂所有Small源码需 ...

最新文章

  1. domdocument php charset gbk,PHP DomDocument无法处理utf-8字符(☆)
  2. scrapy的post登录:renren
  3. 启明云端分享|ESP32-S3一颗融合AI和IOT于一体的芯片,到底有哪些功能!能应用在哪些场景呢
  4. gradient设置上下渐变_css3渐变之线性渐变linear-gradient
  5. 计算机组成实验v代表什么,2014计算机组成原理实验指导V1.3.docx
  6. 数据产品经理为什么吃香?
  7. python3 定时任务_Python3.x:定时任务实现方式
  8. Dom,JQuery
  9. Python Regular Expression
  10. 不用无限手套,人人都能开发 BI 系统
  11. CAS4 之 集成RESTful API
  12. 【数理逻辑】命题和联结词 ( 命题 | 命题符号化 | 真值联结词 | 否 | 合取 | 析取 | 非真值联结词 | 蕴涵 | 等价 )
  13. 追随张至顺道长的日子
  14. 【CSDN雇主招聘】深信服科技带着高薪岗位JD和公司周边来啦
  15. ccmall商城:“龙飞曦舞,日月鎏金”群星演唱会完美收官
  16. 普通大一学生的自我反思
  17. java excel文件损坏_SpringBoot下载Excel文件,解决文件损坏问题(示例代码)
  18. matlab导入word数据,matlab导入word
  19. C语言复习——文件操作以及各种输入输出
  20. 卫星影像领域的深度学习数据和模型项目

热门文章

  1. pascal语言基础(二)
  2. SC2161 国产旋变解码芯片
  3. 【历史上的今天】10 月 7 日:数据结构领域图灵奖得主诞生;第一台晶体管计算机的原型;Dropbox 创始人出生
  4. 拉格朗日插值法求多项式系数 (附代码)
  5. 获取寄存器地址的方法
  6. java正则表达式去除html标签
  7. 【mpeg】MPEG2、MPEG4、H264的差异和简介
  8. PGRelief使用指南2014(windows版)
  9. QGraphicsScene Class
  10. 51智能小车超声波测距