Fixed
Status Update
Comments
il...@google.com <il...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit e20f35bc155cf582c3950af43a840da5798a7f0a
Author: Zak Cohen <zakcohen@google.com>
Date: Fri Mar 17 16:50:37 2023
Adds support for FontFamily in TextStyle.
Bug: 274179837
Test: Update TextTranslator tests
Relnote: Adds FontFamily as an option for TextStyle.
Change-Id: Ic19ba264e49a5c985baed0debb5faedda6c17711
M glance/glance-appwidget/src/androidMain/kotlin/androidx/glance/appwidget/translators/TextTranslator.kt
M glance/glance-appwidget/src/test/kotlin/androidx/glance/appwidget/translators/TextTranslatorTest.kt
M glance/glance/api/current.txt
M glance/glance/api/public_plus_experimental_current.txt
M glance/glance/api/restricted_current.txt
A glance/glance/src/androidMain/kotlin/androidx/glance/text/FontFamily.kt
M glance/glance/src/androidMain/kotlin/androidx/glance/text/TextStyle.kt
https://android-review.googlesource.com/2496354
Branch: androidx-main
commit e20f35bc155cf582c3950af43a840da5798a7f0a
Author: Zak Cohen <zakcohen@google.com>
Date: Fri Mar 17 16:50:37 2023
Adds support for FontFamily in TextStyle.
Bug: 274179837
Test: Update TextTranslator tests
Relnote: Adds FontFamily as an option for TextStyle.
Change-Id: Ic19ba264e49a5c985baed0debb5faedda6c17711
M glance/glance-appwidget/src/androidMain/kotlin/androidx/glance/appwidget/translators/TextTranslator.kt
M glance/glance-appwidget/src/test/kotlin/androidx/glance/appwidget/translators/TextTranslatorTest.kt
M glance/glance/api/current.txt
M glance/glance/api/public_plus_experimental_current.txt
M glance/glance/api/restricted_current.txt
A glance/glance/src/androidMain/kotlin/androidx/glance/text/FontFamily.kt
M glance/glance/src/androidMain/kotlin/androidx/glance/text/TextStyle.kt
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #3
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.glance:glance:1.0.0-beta01
androidx.glance:glance-appwidget:1.0.0-beta01
jb...@google.com <jb...@google.com> #4
This has been fixed internally and will be available in the Fragment 1.3.0
release.
jb...@google.com <jb...@google.com> #5
Sorry about that, I meant Fragment 1.3.3
.
Description
Component used: Fragment Version used: 1.3.0-beta01
FragmentContainerView
overridesonApplyWindowInsets
and dispatches fresh copy ofWindowInsets
to all children correctly. But it does not consumeWindowInsets
and being aViewGroup
it then dispatches the insets again from theViewGroup.dispatchApplyWindowInsets
. As a result the insets are dispatched second time toFragmentContainerView
children, but this time incorrectly - e.g. if first child consumes system window insets, other children receive empty window insets.