Loading policy/src/com/android/internal/policy/impl/keyguard/KeyguardStatusViewManager.java +2 −1 Original line number Diff line number Diff line Loading @@ -230,7 +230,8 @@ class KeyguardStatusViewManager { } private void maybeSetUpperCaseText(TextView textView, CharSequence text) { if (KeyguardViewManager.USE_UPPER_CASE) { // currently only required for date view if (KeyguardViewManager.USE_UPPER_CASE && textView.getId() != R.id.owner_info) { // currently only required for date view textView.setText(text != null ? text.toString().toUpperCase() : null); } else { textView.setText(text); Loading Loading
policy/src/com/android/internal/policy/impl/keyguard/KeyguardStatusViewManager.java +2 −1 Original line number Diff line number Diff line Loading @@ -230,7 +230,8 @@ class KeyguardStatusViewManager { } private void maybeSetUpperCaseText(TextView textView, CharSequence text) { if (KeyguardViewManager.USE_UPPER_CASE) { // currently only required for date view if (KeyguardViewManager.USE_UPPER_CASE && textView.getId() != R.id.owner_info) { // currently only required for date view textView.setText(text != null ? text.toString().toUpperCase() : null); } else { textView.setText(text); Loading