Loading packages/SystemUI/src/com/android/systemui/decor/RoundedCornerResDelegate.kt +5 −6 Original line number Diff line number Diff line Loading @@ -125,18 +125,17 @@ class RoundedCornerResDelegate( bottomRoundedSize = Size(bottomRadius, bottomRadius) } if (roundedSizeFactor != null && roundedSizeFactor > 0) { val length: Int = (roundedSizeFactor * density).toInt() roundedSize = Size(length, length) } if (topRoundedSize.width == 0) { topRoundedSize = roundedSize } if (bottomRoundedSize.width == 0) { bottomRoundedSize = roundedSize } if (roundedSizeFactor != null && roundedSizeFactor > 0) { val length: Int = (roundedSizeFactor * density).toInt() topRoundedSize = Size(length, length) bottomRoundedSize = Size(length, length) } } fun updateTuningSizeFactor(factor: Int?, newReloadToken: Int) { Loading packages/SystemUI/tests/src/com/android/systemui/decor/RoundedCornerResDelegateTest.kt +6 −2 Original line number Diff line number Diff line Loading @@ -102,9 +102,8 @@ class RoundedCornerResDelegateTest : SysuiTestCase() { fun testUpdateTuningSizeFactor() { mContext.orCreateTestableResources.addOverrides( mockTypeArray = mockTypedArray, radius = 1, radiusTop = 0, radiusBottom = 2, radiusBottom = 0, multipleRadius = false) roundedCornerResDelegate = RoundedCornerResDelegate(mContext.resources, null) Loading @@ -116,6 +115,11 @@ class RoundedCornerResDelegateTest : SysuiTestCase() { assertEquals(Size(length, length), roundedCornerResDelegate.topRoundedSize) assertEquals(Size(length, length), roundedCornerResDelegate.bottomRoundedSize) mContext.orCreateTestableResources.addOverrides( mockTypeArray = mockTypedArray, radiusTop = 1, radiusBottom = 2, multipleRadius = false) roundedCornerResDelegate.updateTuningSizeFactor(null, 2) assertEquals(Size(1, 1), roundedCornerResDelegate.topRoundedSize) Loading Loading
packages/SystemUI/src/com/android/systemui/decor/RoundedCornerResDelegate.kt +5 −6 Original line number Diff line number Diff line Loading @@ -125,18 +125,17 @@ class RoundedCornerResDelegate( bottomRoundedSize = Size(bottomRadius, bottomRadius) } if (roundedSizeFactor != null && roundedSizeFactor > 0) { val length: Int = (roundedSizeFactor * density).toInt() roundedSize = Size(length, length) } if (topRoundedSize.width == 0) { topRoundedSize = roundedSize } if (bottomRoundedSize.width == 0) { bottomRoundedSize = roundedSize } if (roundedSizeFactor != null && roundedSizeFactor > 0) { val length: Int = (roundedSizeFactor * density).toInt() topRoundedSize = Size(length, length) bottomRoundedSize = Size(length, length) } } fun updateTuningSizeFactor(factor: Int?, newReloadToken: Int) { Loading
packages/SystemUI/tests/src/com/android/systemui/decor/RoundedCornerResDelegateTest.kt +6 −2 Original line number Diff line number Diff line Loading @@ -102,9 +102,8 @@ class RoundedCornerResDelegateTest : SysuiTestCase() { fun testUpdateTuningSizeFactor() { mContext.orCreateTestableResources.addOverrides( mockTypeArray = mockTypedArray, radius = 1, radiusTop = 0, radiusBottom = 2, radiusBottom = 0, multipleRadius = false) roundedCornerResDelegate = RoundedCornerResDelegate(mContext.resources, null) Loading @@ -116,6 +115,11 @@ class RoundedCornerResDelegateTest : SysuiTestCase() { assertEquals(Size(length, length), roundedCornerResDelegate.topRoundedSize) assertEquals(Size(length, length), roundedCornerResDelegate.bottomRoundedSize) mContext.orCreateTestableResources.addOverrides( mockTypeArray = mockTypedArray, radiusTop = 1, radiusBottom = 2, multipleRadius = false) roundedCornerResDelegate.updateTuningSizeFactor(null, 2) assertEquals(Size(1, 1), roundedCornerResDelegate.topRoundedSize) Loading