summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-02-27 10:18:01 -0800
committerYorke Lee <yorkelee@google.com>2015-04-20 12:25:45 -0700
commitc6cb85cfc3682a8aa3527be5dafb2a354ca1759b (patch)
treebee260d47802ebfa28111da227e795a76dd24f48 /InCallUI
parente14ae85f2c0023c410cf5f3217125150d7b26790 (diff)
Simplify InCall notification logic
Always show the InCall notification iff there is a live call (incoming, outgoing, active or held). Change-Id: I2fc2a54c92cd0978dcf1bf49b0e8217bf2acc3ec Bug: 20108489
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/StatusBarNotifier.java93
1 files changed, 2 insertions, 91 deletions
diff --git a/InCallUI/src/com/android/incallui/StatusBarNotifier.java b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
index c5a0b7f4c..f1fb5688d 100644
--- a/InCallUI/src/com/android/incallui/StatusBarNotifier.java
+++ b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
@@ -49,49 +49,6 @@ public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
// notification types
private static final int IN_CALL_NOTIFICATION = 1;
- private static final long IN_CALL_TIMEOUT = 1000L;
-
- private interface NotificationTimer {
- enum State {
- SCHEDULED,
- FIRED,
- CLEAR;
- }
- State getState();
- void schedule();
- void clear();
- }
-
- private NotificationTimer mNotificationTimer = new NotificationTimer() {
- private final Handler mHandler = new Handler(new Handler.Callback() {
- public boolean handleMessage(Message m) {
- fire();
- return true;
- }
- });
- private State mState = State.CLEAR;
- public State getState() { return mState; }
- public void schedule() {
- if (mState == State.CLEAR) {
- Log.d(this, "updateInCallNotification: timer scheduled");
- mHandler.sendEmptyMessageDelayed(0, IN_CALL_TIMEOUT);
- mState = State.SCHEDULED;
- }
- }
- public void clear() {
- Log.d(this, "updateInCallNotification: timer cleared");
- mHandler.removeMessages(0);
- mState = State.CLEAR;
- }
- private void fire() {
- Log.d(this, "updateInCallNotification: timer fired");
- mState = State.FIRED;
- updateNotification(
- InCallPresenter.getInstance().getInCallState(),
- InCallPresenter.getInstance().getCallList());
- }
- };
-
private final Context mContext;
private final ContactInfoCache mContactInfoCache;
private final NotificationManager mNotificationManager;
@@ -176,58 +133,12 @@ public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
private void updateInCallNotification(final InCallState state, CallList callList) {
Log.d(this, "updateInCallNotification...");
- Call call = getCallToShow(callList);
-
- // Whether we have an outgoing call but the incall UI has yet to show up.
- // Since we don't normally show a notification while the incall screen is
- // in the foreground, if we show the outgoing notification before the activity
- // comes up the user will see it flash on and off on an outgoing call. We therefore
- // do not show the notification for outgoing calls before the activity has started.
- boolean isOutgoingWithoutIncallUi =
- state == InCallState.OUTGOING &&
- !InCallPresenter.getInstance().isActivityPreviouslyStarted();
-
- // Whether to show a notification immediately.
- boolean showNotificationNow =
-
- // We can still be in the INCALL state when a call is disconnected (in order to show
- // the "Call ended" screen. So check that we have an active connection too.
- (call != null) &&
-
- // We show a notification iff there is an active call.
- state.isConnectingOrConnected() &&
-
- // If the UI is already showing, then for most cases we do not want to show
- // a notification since that would be redundant, unless it is an incoming call,
- // in which case the notification is actually an important alert.
- (!InCallPresenter.getInstance().isShowingInCallUi() || state.isIncoming()) &&
-
- // If we have an outgoing call with no UI but the timer has fired, we show
- // a notification anyway.
- (!isOutgoingWithoutIncallUi ||
- mNotificationTimer.getState() == NotificationTimer.State.FIRED);
-
- // For call upgrade
- if ((call != null)
- && (call.getSessionModificationState()
- == Call.SessionModificationState.RECEIVED_UPGRADE_TO_VIDEO_REQUEST)) {
- Log.d(this, "updateInCallNotification, notify of callupgrade to video!");
- showNotificationNow = true;
- }
+ final Call call = getCallToShow(callList);
- if (showNotificationNow) {
+ if (call != null) {
showNotification(call);
} else {
cancelInCall();
- if (isOutgoingWithoutIncallUi &&
- mNotificationTimer.getState() == NotificationTimer.State.CLEAR) {
- mNotificationTimer.schedule();
- }
- }
-
- // If we see a UI, or we are done with calls for now, reset to ground state.
- if (InCallPresenter.getInstance().isShowingInCallUi() || call == null) {
- mNotificationTimer.clear();
}
}