Searched refs:InCallPresenter (Results 1 - 11 of 11) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
H A DDialpadPresenter.java25 implements InCallPresenter.InCallStateListener {
33 public void onStateChange(InCallPresenter.InCallState state, CallList callList) {
H A DInCallApp.java66 InCallPresenter.getInstance().hangUpOngoingCall(context);
H A DCallButtonPresenter.java20 import com.android.incallui.InCallPresenter.InCallState;
21 import com.android.incallui.InCallPresenter.InCallStateListener;
22 import com.android.incallui.InCallPresenter.IncomingCallListener;
54 InCallPresenter.getInstance().addListener(this);
55 InCallPresenter.getInstance().addIncomingCallListener(this);
62 InCallPresenter.getInstance().removeListener(this);
64 InCallPresenter.getInstance().removeIncomingCallListener(this);
H A DConferenceManagerPresenter.java22 import com.android.incallui.InCallPresenter.InCallState;
23 import com.android.incallui.InCallPresenter.InCallStateListener;
47 InCallPresenter.getInstance().addListener(this);
54 InCallPresenter.getInstance().removeListener(this);
H A DInCallActivity.java90 InCallPresenter.getInstance().setActivity(this);
99 InCallPresenter.getInstance().onUiShowing(true);
118 InCallPresenter.getInstance().onUiShowing(false);
131 InCallPresenter.getInstance().setActivity(null);
234 boolean handled = InCallPresenter.getInstance().handleCallKey();
309 InCallPresenter.getInstance().getProximitySensor().onConfigurationChanged(config);
416 InCallPresenter.getInstance().getProximitySensor().onDialpadVisible(showDialpad);
508 InCallPresenter.getInstance().onDismissDialog();
H A DStatusBarNotifier.java36 import com.android.incallui.InCallPresenter.InCallState;
42 public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
84 InCallPresenter.getInstance().getInCallState(),
85 InCallPresenter.getInstance().getCallList());
109 * Creates notifications according to the state we receive from {@link InCallPresenter}.
216 !InCallPresenter.getInstance().isActivityPreviouslyStarted();
231 (!InCallPresenter.getInstance().isShowingInCallUi() || state.isIncoming()) &&
249 if (InCallPresenter.getInstance().isShowingInCallUi() || call == null) {
566 final Intent intent = InCallPresenter.getInstance().getInCallIntent(/*showdialpad=*/false);
H A DCallCardPresenter.java31 import com.android.incallui.InCallPresenter.InCallState;
32 import com.android.incallui.InCallPresenter.InCallStateListener;
33 import com.android.incallui.InCallPresenter.IncomingCallListener;
100 InCallPresenter.getInstance().addListener(this);
101 InCallPresenter.getInstance().addIncomingCallListener(this);
109 InCallPresenter.getInstance().removeListener(this);
110 InCallPresenter.getInstance().removeIncomingCallListener(this);
H A DProximitySensor.java24 import com.android.incallui.InCallPresenter.InCallState;
25 import com.android.incallui.InCallPresenter.InCallStateListener;
H A DInCallPresenter.java42 public class InCallPresenter implements CallList.Listener { class in inherits:CallList.Listener
44 private static InCallPresenter sInCallPresenter;
67 public static synchronized InCallPresenter getInstance() {
69 sInCallPresenter = new InCallPresenter();
114 Log.d(this, "Finished InCallPresenter.setUp");
566 // 2) InCallPresenter - Gets announcement and calculates that the new InCallState
568 // 3) InCallPresenter - This method is called to see if we need to start or finish
570 // 4) StatusBarNotifier - Listens to InCallState changes. InCallPresenter calls
576 // call InCallPresenter::setActivity() to let the presenter
691 Log.d(this, "Finished InCallPresenter
715 private InCallPresenter() { method in class:InCallPresenter
[all...]
H A DAnswerPresenter.java152 InCallPresenter.getInstance().onDismissDialog();
H A DCallHandlerService.java58 private InCallPresenter mInCallPresenter;
204 mInCallPresenter = InCallPresenter.getInstance();

Completed in 104 milliseconds