Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
6cb73e5b
Commit
6cb73e5b
authored
1 year ago
by
Shivangi Dubey
Committed by
Android (Google) Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix incorrectly sized overlay for unfold animation" into main
parents
a354728f
35a57a24
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/SystemUI/src/com/android/systemui/unfold/FullscreenLightRevealAnimation.kt
+7
-10
7 additions, 10 deletions
...android/systemui/unfold/FullscreenLightRevealAnimation.kt
with
7 additions
and
10 deletions
packages/SystemUI/src/com/android/systemui/unfold/FullscreenLightRevealAnimation.kt
+
7
−
10
View file @
6cb73e5b
...
...
@@ -45,7 +45,6 @@ import com.android.wm.shell.displayareahelper.DisplayAreaHelper
import
dagger.assisted.Assisted
import
dagger.assisted.AssistedFactory
import
dagger.assisted.AssistedInject
import
java.lang.IllegalArgumentException
import
java.util.Optional
import
java.util.concurrent.Executor
import
java.util.function.Consumer
...
...
@@ -71,7 +70,7 @@ constructor(
private
val
displayTracker
:
DisplayTracker
,
@Background
private
val
applicationScope
:
CoroutineScope
,
@Main
private
val
executor
:
Executor
,
@Assisted
private
val
displaySelector
:
Sequence
<
DisplayInfo
>.()
->
DisplayInfo
?,
@Assisted
private
val
displaySelector
:
List
<
DisplayInfo
>.()
->
DisplayInfo
?,
@Assisted
private
val
lightRevealEffectFactory
:
(
rotation
:
Int
)
->
LightRevealEffect
,
@Assisted
private
val
overlayContainerName
:
String
)
{
...
...
@@ -84,13 +83,11 @@ constructor(
private
var
scrimView
:
LightRevealScrim
?
=
null
private
val
rotationWatcher
=
RotationWatcher
()
private
val
internalDisplayInfos
:
Sequence
<
DisplayInfo
>
get
()
=
displayManager
.
getDisplays
(
DisplayManager
.
DISPLAY_CATEGORY_ALL_INCLUDING_DISABLED
)
.
asSequence
()
.
map
{
DisplayInfo
().
apply
{
it
.
getDisplayInfo
(
this
)
}
}
.
filter
{
it
.
type
==
Display
.
TYPE_INTERNAL
}
private
val
internalDisplayInfos
:
List
<
DisplayInfo
>
=
displayManager
.
getDisplays
(
DisplayManager
.
DISPLAY_CATEGORY_ALL_INCLUDING_DISABLED
)
.
map
{
DisplayInfo
().
apply
{
it
.
getDisplayInfo
(
this
)
}
}
.
filter
{
it
.
type
==
Display
.
TYPE_INTERNAL
}
var
isTouchBlocked
:
Boolean
=
false
set
(
value
)
{
...
...
@@ -252,7 +249,7 @@ constructor(
@AssistedFactory
interface
Factory
{
fun
create
(
displaySelector
:
Sequence
<
DisplayInfo
>.()
->
DisplayInfo
?,
displaySelector
:
List
<
DisplayInfo
>.()
->
DisplayInfo
?,
effectFactory
:
(
rotation
:
Int
)
->
LightRevealEffect
,
overlayContainerName
:
String
):
FullscreenLightRevealAnimationController
...
...
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