diff options
| author | 2023-01-12 10:12:37 +0000 | |
|---|---|---|
| committer | 2023-01-12 10:12:37 +0000 | |
| commit | 75a91c539484d16759ed24abedfa5855c6553e5a (patch) | |
| tree | 6967692d63537e12fb6c76902a9a91a0381489bb | |
| parent | 69808b8ff5dfadf2b876e27965ca66d72d2c49aa (diff) | |
| parent | ca7734905b6a0ea9bf419e1921b6f916540216a2 (diff) | |
Merge "Use the correct FGS View when animating into a dialog" into tm-qpr-dev am: ca7734905b
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20941605
Change-Id: I0d0cb40ba9bf1bad31c04ff9b0691c166bbf05ec
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/FooterActionsViewBinder.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/FooterActionsViewBinder.kt b/packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/FooterActionsViewBinder.kt index 30f81243e8d0..19215867e678 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/FooterActionsViewBinder.kt +++ b/packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/FooterActionsViewBinder.kt @@ -219,9 +219,9 @@ object FooterActionsViewBinder { // Small button with the number only. foregroundServicesWithTextView.isVisible = false - foregroundServicesWithNumberView.visibility = View.VISIBLE + foregroundServicesWithNumberView.isVisible = true foregroundServicesWithNumberView.setOnClickListener { - foregroundServices.onClick(Expandable.fromView(foregroundServicesWithTextView)) + foregroundServices.onClick(Expandable.fromView(foregroundServicesWithNumberView)) } foregroundServicesWithNumberHolder.number.text = foregroundServicesCount.toString() foregroundServicesWithNumberHolder.number.contentDescription = foregroundServices.text |