Home
last modified time | relevance | path

Searched refs:switchText (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DPowerNotificationControlsFragment.java52 final TextView switchText = (TextView) switchBar.findViewById(R.id.switch_text); in onViewCreated() local
54 switchText.setText(isEnabled() in onViewCreated()
67 switchText.setText(newState in onViewCreated()
/aosp14/frameworks/base/core/java/android/widget/
H A DSwitch.java1435 final Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout; in onDraw() local
1436 if (switchText != null) { in onDraw()
1451 final int left = cX / 2 - switchText.getWidth() / 2; in onDraw()
1452 final int top = (switchInnerTop + switchInnerBottom) / 2 - switchText.getHeight() / 2; in onDraw()
1454 switchText.draw(canvas); in onDraw()
1595 CharSequence switchText = isChecked() ? mTextOn : mTextOff; in onProvideStructure() local
1596 if (!TextUtils.isEmpty(switchText)) { in onProvideStructure()
1599 structure.setText(switchText); in onProvideStructure()
1602 newText.append(oldText).append(' ').append(switchText); in onProvideStructure()