OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bottomBarSpec
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateOpeningCamera.java
255
CameraAppUI.BottomBarUISpec
bottomBarSpec
= new CameraAppUI.BottomBarUISpec();
257
bottomBarSpec
.enableCamera = true;
258
bottomBarSpec
.cameraCallback = new ButtonManager.ButtonCallback() {
265
bottomBarSpec
.enableGridLines = true;
267
bottomBarSpec
.enableHdr = false;
268
bottomBarSpec
.hideHdr = true;
269
bottomBarSpec
.hdrCallback = null;
271
bottomBarSpec
.enableSelfTimer = true;
272
bottomBarSpec
.showSelfTimer = true;
274
bottomBarSpec
.enableFlash = mCameraCharacteristics.isFlashSupported()
[
all
...]
/packages/apps/Camera2/src/com/android/camera/app/
CameraAppUI.java
[
all
...]
/packages/apps/Camera2/src/com/android/camera/
CaptureModule.java
806
BottomBarUISpec
bottomBarSpec
= new BottomBarUISpec();
807
bottomBarSpec
.enableGridLines = true;
808
bottomBarSpec
.enableCamera = true;
809
bottomBarSpec
.cameraCallback = getCameraCallback();
810
bottomBarSpec
.enableHdr =
812
bottomBarSpec
.hdrCallback = getHdrButtonCallback();
813
bottomBarSpec
.enableSelfTimer = true;
814
bottomBarSpec
.showSelfTimer = true;
815
bottomBarSpec
.isExposureCompensationSupported = mCameraCharacteristics
817
bottomBarSpec
.enableExposureCompensation = bottomBarSpec.isExposureCompensationSupported
[
all
...]
PhotoModule.java
627
CameraAppUI.BottomBarUISpec
bottomBarSpec
= new CameraAppUI.BottomBarUISpec();
629
bottomBarSpec
.enableCamera = true;
630
bottomBarSpec
.cameraCallback = mCameraCallback;
631
bottomBarSpec
.enableFlash = !mAppController.getSettingsManager()
633
bottomBarSpec
.enableHdr = true;
634
bottomBarSpec
.hdrCallback = mHdrPlusCallback;
635
bottomBarSpec
.enableGridLines = true;
637
bottomBarSpec
.enableExposureCompensation = true;
638
bottomBarSpec
.exposureCompensationSetCallback =
645
bottomBarSpec
.minExposureCompensation
[
all
...]
VideoModule.java
559
CameraAppUI.BottomBarUISpec
bottomBarSpec
= new CameraAppUI.BottomBarUISpec();
561
bottomBarSpec
.enableCamera = true;
562
bottomBarSpec
.cameraCallback = mCameraCallback;
563
bottomBarSpec
.enableTorchFlash = true;
564
bottomBarSpec
.flashCallback = mFlashCallback;
565
bottomBarSpec
.hideHdr = true;
566
bottomBarSpec
.enableGridLines = true;
567
bottomBarSpec
.enableExposureCompensation = false;
568
bottomBarSpec
.isExposureCompensationSupported = false;
571
bottomBarSpec
.showCancel = true
[
all
...]
/packages/apps/Camera2/src/com/android/camera/captureintent/
CaptureIntentModuleUI.java
126
* @param
bottomBarSpec
The bottom bar spec.
130
CameraAppUI.BottomBarUISpec
bottomBarSpec
) {
132
mAppUI.applyModuleSpecs(hardwareSpec,
bottomBarSpec
);
Completed in 464 milliseconds