www.久久久久|狼友网站av天堂|精品国产无码a片|一级av色欲av|91在线播放视频|亚洲无码主播在线|国产精品草久在线|明星AV网站在线|污污内射久久一区|婷婷综合视频网站

當(dāng)前位置:首頁(yè) > 嵌入式 > 嵌入式軟件
[導(dǎo)讀] com.android.camera.Camera.java,主要的實(shí)現(xiàn)Activity,繼承于ActivityBase。ActivityBase在ActivityBase中執(zhí)行流程:onCreate中進(jìn)行判斷是否是平板;onResume中判斷是否鎖

 com.android.camera.Camera.java,主要的實(shí)現(xiàn)Activity,繼承于ActivityBase。

ActivityBase

在ActivityBase中執(zhí)行流程:

onCreate中進(jìn)行判斷是否是平板;

onResume中判斷是否鎖屏,鎖屏&camera不存在時(shí)候,mOnResumePending置為true,否則置為false并執(zhí)行doOnResume;

onWindowFocusChanged中判斷是否獲取到焦點(diǎn)&mOnResumePending,滿足的話執(zhí)行doOnResume;

onPause中將mOnResumePending置為false;

Camera.java

接下來(lái)分析Camera.java,執(zhí)行流程:

1、onCreate

復(fù)制代碼

// 獲得攝像頭的數(shù)量,前置和后置

getPreferredCameraId();

// 獲得對(duì)焦設(shè)置eg:連續(xù)對(duì)焦或者其它

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

//實(shí)例化Focus管理對(duì)象

mFocusManager = new FocusManager(mPreferences, defaultFocusModes);

// 開(kāi)啟線程來(lái)啟動(dòng)攝像頭

mCameraOpenThread.start();

// 是否是第三方應(yīng)用啟動(dòng)拍照功能

mIsImageCaptureIntent = isImageCaptureIntent();

// 設(shè)置UI布局文件

setContentView(R.layout.camera);

if (mIsImageCaptureIntent) {

// 當(dāng)?shù)谌狡渌团恼?,需要顯示不同的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);

}

// 一個(gè)能旋轉(zhuǎn)的dialog.比如相機(jī)設(shè)置的dialog,這個(gè)類實(shí)現(xiàn)了旋轉(zhuǎn)的父類

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

// 設(shè)置camera的ID,寫(xiě)道SharedPreference中

mPreferences.setLocalId(this, mCameraId);

// 更新preference

CameraSettings.upgradeLocalPreferences(mPreferences.getLocal());

// 獲得相機(jī)數(shù)

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

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

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

// 為當(dāng)前的preview重置曝光值

resetExposureCompensation();

// 隱藏系統(tǒng)導(dǎo)航欄等

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 {

// 這個(gè)join語(yǔ)句就是為了保證openCamera的線程執(zhí)行完后,當(dāng)前的線程才開(kāi)始運(yùn)行。主要是為了確保camera設(shè)備被打開(kāi)了

mCameraOpenThread.join();

// 線程執(zhí)行完后置為空來(lái)讓系統(tǒng)回收資源

mCameraOpenThread = null;

if (mOpenCameraFail) {

// 打開(kāi)camera失敗,顯示“無(wú)法連接到相機(jī)”

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

return;

} else if (mCameraDisabled) {

// 由于安全政策限制,相機(jī)已被停用

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

return;

}

} catch (InterruptedException ex) {

// ignore

}

//開(kāi)啟顯示的子線程

mCameraPreviewThread.start();

if (mIsImageCaptureIntent) {

//如果是第三方開(kāi)啟的 ,setupCaptureParams 設(shè)置拍照的參數(shù)

setupCaptureParams();

} else {

//設(shè)置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;

復(fù)制代碼

2、surfaceCreated

啥都沒(méi)做

3、surfaceChanged

復(fù)制代碼

// 確保在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();

}

復(fù)制代碼

如果是第一次加載,則執(zhí)行mHandler.sendEmptyMessage(FIRST_TIME_INIT); 對(duì)應(yīng)處理的是initializeFirstTime();

復(fù)制代碼

/**

* 初始化,第一次初始化

* // 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());

// 初始化屏幕最上方的標(biāo)志,比如開(kāi)啟了曝光值啊,什么的

initOnScreenIndicator();

// 位置服務(wù)

mLocationManager.recordLocation(recordLocation);

keepMediaProviderInstance();

// 檢查存儲(chǔ)空間和初始化儲(chǔ)存目錄

checkStorage();

// Initialize last picture button.

mContentResolver = getContentResolver();

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

// 初始化縮略圖

initThumbnailButton();

}

// Initialize shutter button.

// 初始化拍照按鈕并設(shè)置監(jiān)聽(tīng)事件

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);

// 初始化一個(gè)圖片的保存線程

mImageSaver = new ImageSaver();

// 設(shè)置屏幕亮度

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

// 注冊(cè)SD卡相關(guān)的廣播,比如拔出存儲(chǔ)卡什么的

installIntentFilter();

// 初始化縮放UI

initializeZoom();

// 更新屏幕上的閃光燈什么的標(biāo)記

updateOnScreenIndicators();

// 開(kāi)始面部檢測(cè)

startFaceDetection();

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

// 假如是第一次啟動(dòng),提示用戶“觸摸對(duì)焦”

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();

}

復(fù)制代碼

如果不是,則執(zhí)行initializeSecondTime();

復(fù)制代碼

/**

* // 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.

//方向翻轉(zhuǎn)設(shè)置enable,其中包括翻轉(zhuǎn)的時(shí)候的動(dòng)畫(huà)

mOrientationListener.enable();

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

boolean recordLocation = RecordLocationPreference.get(

mPreferences, getContentResolver());

mLocationManager.recordLocation(recordLocation);

//設(shè)置SD卡廣播

installIntentFilter();

mImageSaver = new ImageSaver();

//初始化Zoom

initializeZoom();

//mMediaProviderClient=媒體Provider對(duì)象

keepMediaProviderInstance();

//檢查硬盤

checkStorage();

//淡出retake和done的Button

hidePostCaptureAlert();

if (!mIsImageCaptureIntent) {

//如果不是第三方開(kāi)啟,則更新縮略圖

updateThumbnailButton();

mModePicker.setCurrentMode(ModePicker.MODE_CAMERA);

}

}

復(fù)制代碼

4、surfaceDestroyed

stopPreview();

mSurfaceHolder = null;

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請(qǐng)聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請(qǐng)及時(shí)聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

倫敦2024年8月29日 /美通社/ -- 英國(guó)汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開(kāi)發(fā)耗時(shí)1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動(dòng) BSP

北京2024年8月28日 /美通社/ -- 越來(lái)越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時(shí)企業(yè)卻面臨越來(lái)越多業(yè)務(wù)中斷的風(fēng)險(xiǎn),如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報(bào)道,騰訊和網(wǎng)易近期正在縮減他們對(duì)日本游戲市場(chǎng)的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)開(kāi)幕式在貴陽(yáng)舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語(yǔ)權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對(duì)環(huán)境變化,經(jīng)營(yíng)業(yè)績(jī)穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤(rùn)率延續(xù)升勢(shì) 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長(zhǎng) 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競(jìng)爭(zhēng)力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競(jìng)爭(zhēng)優(yōu)勢(shì)...

關(guān)鍵字: 通信 BSP 電信運(yùn)營(yíng)商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺(tái)與中國(guó)電影電視技術(shù)學(xué)會(huì)聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會(huì)上宣布正式成立。 活動(dòng)現(xiàn)場(chǎng) NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長(zhǎng)三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會(huì)上,軟通動(dòng)力信息技術(shù)(集團(tuán))股份有限公司(以下簡(jiǎn)稱"軟通動(dòng)力")與長(zhǎng)三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉