HomeSort by relevance Sort by last modified time
    Searched refs:InCallPresenter (Results 1 - 24 of 24) sorted by null

  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
NotificationBroadcastReceiver.java 60 InCallPresenter.getInstance().answerIncomingCall(
63 InCallPresenter.getInstance().answerIncomingCall(
66 InCallPresenter.getInstance().declineIncomingCall(context);
68 InCallPresenter.getInstance().hangUpOngoingCall(context);
71 InCallPresenter.getInstance().acceptUpgradeRequest(
74 InCallPresenter.getInstance().declineUpgradeRequest(context);
77 InCallPresenter.getInstance().getExternalCallNotifier()
InCallServiceImpl.java 42 InCallPresenter.getInstance().onBringToForeground(showDialpad);
47 InCallPresenter.getInstance().onCallAdded(call);
52 InCallPresenter.getInstance().onCallRemoved(call);
57 InCallPresenter.getInstance().onCanAddCallChanged(canAddCall);
64 InCallPresenter.getInstance().setUp(
77 InCallPresenter.getInstance().onServiceBind();
78 InCallPresenter.getInstance().maybeStartRevealAnimation(intent);
88 InCallPresenter.getInstance().onServiceUnbind();
98 InCallPresenter.getInstance().tearDown();
DialpadPresenter.java 25 implements InCallPresenter.InCallStateListener {
32 InCallPresenter.getInstance().addListener(this);
39 InCallPresenter.getInstance().removeListener(this);
43 public void onStateChange(InCallPresenter.InCallState oldState,
44 InCallPresenter.InCallState newState, CallList callList) {
ConferenceManagerPresenter.java 21 import com.android.incallui.InCallPresenter.InCallDetailsListener;
22 import com.android.incallui.InCallPresenter.InCallState;
23 import com.android.incallui.InCallPresenter.InCallStateListener;
24 import com.android.incallui.InCallPresenter.IncomingCallListener;
45 InCallPresenter.getInstance().addListener(this);
46 InCallPresenter.getInstance().addIncomingCallListener(this);
53 InCallPresenter.getInstance().removeListener(this);
54 InCallPresenter.getInstance().removeIncomingCallListener(this);
68 InCallPresenter.getInstance().showConferenceCallManager(false);
71 InCallPresenter.getInstance().showConferenceCallManager(false)
    [all...]
AnswerPresenter.java 23 import com.android.incallui.InCallPresenter.InCallState;
32 * An instance of {@link AnswerPresenter} is created by InCallPresenter at startup, registers
33 * for callbacks via InCallPresenter, and shows/hides the {@link AnswerFragment} via IncallActivity.
37 implements CallList.CallUpdateListener, InCallPresenter.InCallUiListener,
38 InCallPresenter.IncomingCallListener,
81 InCallPresenter.getInstance().declineUpgradeRequest();
133 InCallPresenter inCallPresenter = InCallPresenter.getInstance();
135 && inCallPresenter.getInCallState() == InCallPresenter.InCallState.INCOMING)
    [all...]
VideoCallPresenter.java 37 import com.android.incallui.InCallPresenter.InCallDetailsListener;
38 import com.android.incallui.InCallPresenter.InCallOrientationListener;
39 import com.android.incallui.InCallPresenter.InCallStateListener;
40 import com.android.incallui.InCallPresenter.IncomingCallListener;
71 InCallPresenter.InCallEventListener {
84 if (mAutoFullScreenPending && !InCallPresenter.getInstance().isDialpadVisible()
88 InCallPresenter.getInstance().setFullScreen(true);
234 InCallPresenter.getInstance().addListener(this);
235 InCallPresenter.getInstance().addDetailsListener(this);
236 InCallPresenter.getInstance().addIncomingCallListener(this)
    [all...]
CallButtonPresenter.java 43 import com.android.incallui.InCallPresenter.CanAddCallListener;
44 import com.android.incallui.InCallPresenter.InCallDetailsListener;
45 import com.android.incallui.InCallPresenter.InCallState;
46 import com.android.incallui.InCallPresenter.InCallStateListener;
47 import com.android.incallui.InCallPresenter.IncomingCallListener;
73 final InCallPresenter inCallPresenter = InCallPresenter.getInstance();
74 inCallPresenter.addListener(this);
75 inCallPresenter.addIncomingCallListener(this)
    [all...]
InCallOrientationEventListener.java 72 * Handles changes in device orientation. Notifies InCallPresenter of orientation changes.
91 InCallPresenter.getInstance().onDeviceOrientationChange(sCurrentOrientation);
109 InCallPresenter.getInstance().onDeviceOrientationChange(sCurrentOrientation);
CallCardPresenter.java 52 import com.android.incallui.InCallPresenter.InCallDetailsListener;
53 import com.android.incallui.InCallPresenter.InCallEventListener;
54 import com.android.incallui.InCallPresenter.InCallState;
55 import com.android.incallui.InCallPresenter.InCallStateListener;
56 import com.android.incallui.InCallPresenter.IncomingCallListener;
162 onStateChange(null, InCallPresenter.getInstance().getInCallState(), CallList.getInstance());
179 InCallPresenter.getInstance().addListener(this);
180 InCallPresenter.getInstance().addIncomingCallListener(this);
181 InCallPresenter.getInstance().addDetailsListener(this);
182 InCallPresenter.getInstance().addInCallEventListener(this)
    [all...]
VideoPauseController.java 20 import com.android.incallui.InCallPresenter.InCallState;
21 import com.android.incallui.InCallPresenter.InCallStateListener;
22 import com.android.incallui.InCallPresenter.IncomingCallListener;
72 private InCallPresenter mInCallPresenter;
100 * {@link com.android.incallui.InCallPresenter}.
102 * @param inCallPresenter The {@link com.android.incallui.InCallPresenter}.
104 public void setUp(InCallPresenter inCallPresenter) {
106 mInCallPresenter = Preconditions.checkNotNull(inCallPresenter);
    [all...]
InCallActivity.java 150 InCallPresenter.getInstance().handleAccountSelection(selectedAccountHandle,
156 InCallPresenter.getInstance().cancelAccountSelection();
259 InCallPresenter.getInstance().setActivity(this);
263 InCallPresenter.getInstance().onActivityStarted();
271 InCallPresenter.getInstance().setThemeColors();
272 InCallPresenter.getInstance().onUiShowing(true);
275 InCallPresenter.getInstance().clearFullscreen();
282 InCallPresenter.getInstance().setFullScreen(false, true /* force */);
315 InCallPresenter.getInstance().onUiShowing(false);
317 InCallPresenter.getInstance().unsetActivity(this)
    [all...]
AnswerFragment.java 81 return InCallPresenter.getInstance().getAnswerPresenter();
257 InCallPresenter.getInstance().declineUpgradeRequest(context);
ProximitySensor.java 30 import com.android.incallui.InCallPresenter.InCallState;
31 import com.android.incallui.InCallPresenter.InCallStateListener;
InCallPresenter.java 79 public class InCallPresenter implements CallList.Listener,
90 private static InCallPresenter sInCallPresenter;
283 public static synchronized InCallPresenter getInstance() {
285 sInCallPresenter = new InCallPresenter();
291 static synchronized void setInstance(InCallPresenter inCallPresenter) {
292 sInCallPresenter = inCallPresenter;
356 Log.d(this, "Finished InCallPresenter.setUp");
    [all...]
CircularRevealFragment.java 83 startOutgoingAnimation(InCallPresenter.getInstance().getThemeColors());
StatusBarNotifier.java 57 import com.android.incallui.InCallPresenter.InCallState;
68 public class StatusBarNotifier implements InCallPresenter.InCallStateListener,
110 * Creates notifications according to the state we receive from {@link InCallPresenter}.
294 && !InCallPresenter.getInstance().isShowingInCallUi()) {
712 final Intent intent = InCallPresenter.getInstance().getInCallIntent(
    [all...]
CallCardFragment.java 391 final boolean isLayoutRtl = InCallPresenter.isRtl();
706 InCallPresenter.getInstance().notifySecondaryCallerInfoVisibilityChanged(visible,
    [all...]
DialpadFragment.java 457 int textColor = InCallPresenter.getInstance().getThemeColors().mPrimaryColor;
CallButtonFragment.java 244 MaterialPalette themeColors = InCallPresenter.getInstance().getThemeColors();
583 InCallPresenter.getInstance().showConferenceCallManager(true);
    [all...]
Call.java 504 TelecomManager mgr = InCallPresenter.getInstance().getTelecomManager();
    [all...]
VideoCallFragment.java 466 float spaceBesideCallCard = InCallPresenter.getInstance().getSpaceBesideCallCard();
    [all...]
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
InCallPresenterTest.java 30 import com.android.incallui.InCallPresenter.InCallState;
46 InCallPresenter mInCallPresenter;
60 mInCallPresenter = InCallPresenter.getInstance();
75 InCallPresenter.setInstance(null);
130 verify(mContext).startActivity(InCallPresenter.getInstance().getInCallIntent(false, false));
142 verify(mContext).startActivity(InCallPresenter.getInstance().getInCallIntent(false, false));
ProximitySensorTest.java 27 import com.android.incallui.InCallPresenter.InCallState;
ExternalCallNotifierTest.java 69 private InCallPresenter mInCallPresenter;
102 // We don't directly use the InCallPresenter in the test, or even in ExternalCallNotifier
105 // Call class depends on the static InCallPresenter for a number of things, so we need to
107 mInCallPresenter = InCallPresenter.getInstance();

Completed in 119 milliseconds