diff options
author | Santos Cordon <santoscordon@google.com> | 2013-10-01 02:24:34 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-10-01 02:24:34 +0000 |
commit | 4c595a7de29b1c9c2de2b8c41dca6bcc5dbe4b28 (patch) | |
tree | 9d3ee59d0df6c672c54baa6c260553cff0b2aeaa /InCallUI | |
parent | 9ea8fe6c56dfa08905953400c8940ff60a0c27ef (diff) | |
parent | 816e4c55053c41f61d45b0a379860d80a7df99cb (diff) |
Merge "Protect hideDialpad() code with isActivityStarted() check." into klp-dev
Diffstat (limited to 'InCallUI')
-rw-r--r-- | InCallUI/src/com/android/incallui/InCallPresenter.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallPresenter.java b/InCallUI/src/com/android/incallui/InCallPresenter.java index 541661c57..4b3893994 100644 --- a/InCallUI/src/com/android/incallui/InCallPresenter.java +++ b/InCallUI/src/com/android/incallui/InCallPresenter.java @@ -246,7 +246,7 @@ public class InCallPresenter implements CallList.Listener { */ @Override public void onDisconnect(Call call) { - mInCallActivity.hideDialpadForDisconnect(); + hideDialpadForDisconnect(); maybeShowErrorDialogOnDisconnect(call); // We need to do the run the same code as onCallListChange. @@ -487,6 +487,15 @@ public class InCallPresenter implements CallList.Listener { } /** + * Hides the dialpad. Called when a call is disconnected (Requires hiding dialpad). + */ + private void hideDialpadForDisconnect() { + if (isActivityStarted()) { + mInCallActivity.hideDialpadForDisconnect(); + } + } + + /** * When the state of in-call changes, this is the first method to get called. It determines if * the UI needs to be started or finished depending on the new state and does it. */ |