use of org.thoughtcrime.securesms.util.EllapsedTimeFormatter in project Signal-Android by WhisperSystems.
the class WebRtcCallActivity method handleCallTime.
private void handleCallTime(long callTime) {
EllapsedTimeFormatter ellapsedTimeFormatter = EllapsedTimeFormatter.fromDurationMillis(callTime);
if (ellapsedTimeFormatter == null) {
return;
}
callScreen.setStatus(getString(R.string.WebRtcCallActivity__signal_s, ellapsedTimeFormatter.toString()));
}
use of org.thoughtcrime.securesms.util.EllapsedTimeFormatter in project Signal-Android by signalapp.
the class WebRtcCallActivity method handleCallTime.
private void handleCallTime(long callTime) {
EllapsedTimeFormatter ellapsedTimeFormatter = EllapsedTimeFormatter.fromDurationMillis(callTime);
if (ellapsedTimeFormatter == null) {
return;
}
callScreen.setStatus(getString(R.string.WebRtcCallActivity__signal_s, ellapsedTimeFormatter.toString()));
}
Aggregations