Home | History | Annotate | Download | only in statusbar

Lines Matching refs:mTextView

77     private KeyguardIndicationTextView mTextView;
126 mTextView = indicationArea.findViewById(R.id.keyguard_indication_text);
127 mInitialTextColor = mTextView != null ? mTextView.getCurrentTextColor() : Color.WHITE;
297 mTextView.setTextColor(Color.WHITE);
301 mTextView.switchIndication(mTransientIndication);
305 animateText(mTextView, indication);
307 mTextView.switchIndication(indication);
312 mTextView.switchIndication(percentage);
322 mTextView.switchIndication(com.android.internal.R.string.lockscreen_storage_locked);
323 mTextView.setTextColor(mInitialTextColor);
325 mTextView.switchIndication(mTransientIndication);
326 mTextView.setTextColor(mTransientTextColor);
329 mTextView.switchIndication(trustGrantedIndication);
330 mTextView.setTextColor(mInitialTextColor);
336 mTextView.setTextColor(mInitialTextColor);
338 animateText(mTextView, indication);
340 mTextView.switchIndication(indication);
345 mTextView.switchIndication(trustManagedIndication);
346 mTextView.setTextColor(mInitialTextColor);
348 mTextView.switchIndication(mRestingIndication);
349 mTextView.setTextColor(mInitialTextColor);
488 pw.println(" mTextView.getText(): " + (mTextView == null ? null : mTextView.getText()));