Loading packages/SystemUI/res/layout/biometric_prompt_layout.xml +0 −2 Original line number Diff line number Diff line Loading @@ -28,7 +28,6 @@ android:singleLine="true" android:marqueeRepeatLimit="1" android:ellipsize="marquee" android:importantForAccessibility="no" style="@style/TextAppearance.AuthCredential.Title"/> <TextView Loading @@ -39,7 +38,6 @@ android:singleLine="true" android:marqueeRepeatLimit="1" android:ellipsize="marquee" android:importantForAccessibility="no" style="@style/TextAppearance.AuthCredential.Subtitle"/> <TextView Loading packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/BiometricViewBinder.kt +5 −3 Original line number Diff line number Diff line Loading @@ -93,9 +93,11 @@ object BiometricViewBinder { val subtitleView = view.findViewById<TextView>(R.id.subtitle) val descriptionView = view.findViewById<TextView>(R.id.description) // set selected for marquee titleView.isSelected = true subtitleView.isSelected = true // set selected to enable marquee unless a screen reader is enabled titleView.isSelected = !accessibilityManager.isEnabled || !accessibilityManager.isTouchExplorationEnabled subtitleView.isSelected = !accessibilityManager.isEnabled || !accessibilityManager.isTouchExplorationEnabled descriptionView.movementMethod = ScrollingMovementMethod() val iconViewOverlay = view.findViewById<LottieAnimationView>(R.id.biometric_icon_overlay) Loading Loading
packages/SystemUI/res/layout/biometric_prompt_layout.xml +0 −2 Original line number Diff line number Diff line Loading @@ -28,7 +28,6 @@ android:singleLine="true" android:marqueeRepeatLimit="1" android:ellipsize="marquee" android:importantForAccessibility="no" style="@style/TextAppearance.AuthCredential.Title"/> <TextView Loading @@ -39,7 +38,6 @@ android:singleLine="true" android:marqueeRepeatLimit="1" android:ellipsize="marquee" android:importantForAccessibility="no" style="@style/TextAppearance.AuthCredential.Subtitle"/> <TextView Loading
packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/BiometricViewBinder.kt +5 −3 Original line number Diff line number Diff line Loading @@ -93,9 +93,11 @@ object BiometricViewBinder { val subtitleView = view.findViewById<TextView>(R.id.subtitle) val descriptionView = view.findViewById<TextView>(R.id.description) // set selected for marquee titleView.isSelected = true subtitleView.isSelected = true // set selected to enable marquee unless a screen reader is enabled titleView.isSelected = !accessibilityManager.isEnabled || !accessibilityManager.isTouchExplorationEnabled subtitleView.isSelected = !accessibilityManager.isEnabled || !accessibilityManager.isTouchExplorationEnabled descriptionView.movementMethod = ScrollingMovementMethod() val iconViewOverlay = view.findViewById<LottieAnimationView>(R.id.biometric_icon_overlay) Loading