Fixed
Status Update
Comments
ti...@google.com <ti...@google.com> #2
Hi. Thanks for reporting this. Fixed in alpha-04
jd...@google.com <jd...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-main
commit e782987543a9f8ccd485e970ddc74564b24378db
Author: Vighnesh Raut <vighnesh.raut13@gmail.com>
Date: Mon Jan 02 15:27:40 2023
fix: tab row crashes when only 1 tab is added
Bug: b/264018028
Test: Added unit test
Change-Id: I6381dbac304fc1d69d3708c6655f8b595668e93f
M tv/tv-material/src/androidTest/java/androidx/tv/material/TabRowTest.kt
M tv/tv-material/src/main/java/androidx/tv/material/TabRow.kt
https://android-review.googlesource.com/2373449
Branch: androidx-main
commit e782987543a9f8ccd485e970ddc74564b24378db
Author: Vighnesh Raut <vighnesh.raut13@gmail.com>
Date: Mon Jan 02 15:27:40 2023
fix: tab row crashes when only 1 tab is added
Bug:
Test: Added unit test
Change-Id: I6381dbac304fc1d69d3708c6655f8b595668e93f
M tv/tv-material/src/androidTest/java/androidx/tv/material/TabRowTest.kt
M tv/tv-material/src/main/java/androidx/tv/material/TabRow.kt
nj...@google.com <nj...@google.com> #4
deleted
ap...@google.com <ap...@google.com> #5
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.tv:tv-material:1.0.0-alpha04
ap...@google.com <ap...@google.com> #6
Project: platform/frameworks/support
Branch: androidx-main
commit f60a1149f00d6cc5972e9bd4057eb4a15505b468
Author: Nader Jawad <njawad@google.com>
Date: Wed May 31 16:19:53 2023
Update DrawScope sample with explaination
of hardware accelerated rendering support
Added note regarding hardware accelerated
drawing support for Canvas#drawPicture
Bug: 225408150
Test: Builds
Change-Id: I8e929eecf38ed01f45dcffd33139c1baf5a1917a
M compose/ui/ui-graphics/samples/src/main/java/androidx/compose/ui/graphics/samples/DrawScopeSample.kt
https://android-review.googlesource.com/2610318
Branch: androidx-main
commit f60a1149f00d6cc5972e9bd4057eb4a15505b468
Author: Nader Jawad <njawad@google.com>
Date: Wed May 31 16:19:53 2023
Update DrawScope sample with explaination
of hardware accelerated rendering support
Added note regarding hardware accelerated
drawing support for Canvas#drawPicture
Bug: 225408150
Test: Builds
Change-Id: I8e929eecf38ed01f45dcffd33139c1baf5a1917a
M compose/ui/ui-graphics/samples/src/main/java/androidx/compose/ui/graphics/samples/DrawScopeSample.kt
pr...@google.com <pr...@google.com> #7
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.ui:ui-graphics:1.6.0-alpha01
androidx.compose.ui:ui-graphics-android:1.6.0-alpha01
Description
We need to introduce the ability to retarget a given DrawScope to render into a separate canvas. This is useful in situations where we want to create a "GhostView" in some circumstances (ex. drag and drop) as well as shared element transitions that require drawing the composition hierarchy at a specific instance then redrawing it.
Additionally this would allow us to introduce some post processing on the RenderNode to either draw the same content several times more efficiently with a rasterization layer or as input to other visual effects (ex. blur).