Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallController.kt183 val timeView = currentChipView?.getTimeView() regex
185 if (currentChipView != null && timeView != null) {
187 timeView.setShouldHideText(false)
188 timeView.base = currentCallNotificationInfo.callStartTime -
191 timeView.start()
193 timeView.setShouldHideText(true)
194 timeView.stop()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationHeaderViewWrapper.java361 final View timeView = mNotificationHeader.findViewById(com.android.internal.R.id.time); in setNotificationWhen() local
363 if (timeView instanceof DateTimeView) { in setNotificationWhen()
364 ((DateTimeView) timeView).setTime(whenMillis); in setNotificationWhen()