From 265089a047d575666a7c9fe325bf46d28b0342d1 Mon Sep 17 00:00:00 2001 From: yueg Date: Fri, 6 Oct 2017 14:35:15 -0700 Subject: Show on hold in management screen for conference call. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do the following when a participant is on hold: - Add "On hold • " in front of the number - Gray out avatar and text (contact name & number) Notice: We only have the on hold state information for VoLTE conference call and IMS conference call. So the change only works for them (not for GSM/CDMA conference call). Test: ConferenceManagerPresenterTest PiperOrigin-RevId: 171345423 Change-Id: Ie5fe2fc1097f4858604283989dcb916c2ac21972 --- java/com/android/incallui/call/DialerCall.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'java/com/android/incallui/call/DialerCall.java') diff --git a/java/com/android/incallui/call/DialerCall.java b/java/com/android/incallui/call/DialerCall.java index 82a29ee84..d393b4211 100644 --- a/java/com/android/incallui/call/DialerCall.java +++ b/java/com/android/incallui/call/DialerCall.java @@ -706,6 +706,10 @@ public class DialerCall implements VideoTechListener, StateChangedListener, Capa } } + public int getNonConferenceState() { + return mState; + } + public void setState(int state) { if (state == State.INCOMING) { mLogState.isIncoming = true; -- cgit v1.2.3