Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_packages_apps_Aperture
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LMODroid
platform_packages_apps_Aperture
Commits
c1472a01
Commit
c1472a01
authored
1 year ago
by
Sebastiano Barezzi
Committed by
Luca Stefani
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Aperture: Simplify flash mode handling
Change-Id: I5ec3fcb523cf4cc240e9dbaed124bc330b2db08d
parent
9e0a3f71
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/src/main/java/org/lineageos/aperture/CameraActivity.kt
+2
-7
2 additions, 7 deletions
app/src/main/java/org/lineageos/aperture/CameraActivity.kt
app/src/main/java/org/lineageos/aperture/camera/FlashMode.kt
+20
-0
20 additions, 0 deletions
app/src/main/java/org/lineageos/aperture/camera/FlashMode.kt
with
22 additions
and
7 deletions
app/src/main/java/org/lineageos/aperture/CameraActivity.kt
+
2
−
7
View file @
c1472a01
...
...
@@ -1642,13 +1642,8 @@ open class CameraActivity : AppCompatActivity() {
private
fun
cycleFlashMode
()
{
val
currentFlashMode
=
flashMode
val
newFlashMode
=
when
(
cameraMode
)
{
CameraMode
.
PHOTO
->
currentFlashMode
.
next
()
CameraMode
.
VIDEO
->
if
(
currentFlashMode
!=
FlashMode
.
OFF
)
{
FlashMode
.
OFF
}
else
{
FlashMode
.
TORCH
}
CameraMode
.
PHOTO
->
FlashMode
.
PHOTO_ALLOWED_MODES
.
next
(
currentFlashMode
)
CameraMode
.
VIDEO
->
FlashMode
.
VIDEO_ALLOWED_MODES
.
next
(
currentFlashMode
)
else
->
FlashMode
.
OFF
}
...
...
This diff is collapsed.
Click to expand it.
app/src/main/java/org/lineageos/aperture/camera/FlashMode.kt
+
20
−
0
View file @
c1472a01
...
...
@@ -38,4 +38,24 @@ enum class FlashMode {
* Get the next mode.
*/
fun
next
()
=
values
().
next
(
this
)
companion
object
{
/**
* Allowed flash modes when in photo mode.
*/
val
PHOTO_ALLOWED_MODES
=
listOf
(
OFF
,
AUTO
,
ON
,
TORCH
,
)
/**
* Allowed flash modes when in video mode.
*/
val
VIDEO_ALLOWED_MODES
=
listOf
(
OFF
,
TORCH
,
)
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment