HomeSort by relevance Sort by last modified time
    Searched defs:InCallActivity (Results 1 - 2 of 2) sorted by null

  /packages/apps/Dialer/java/com/android/incallui/
InCallActivity.java 62 /** Version of {@link InCallActivity} that shows the new UI */
63 public class InCallActivity extends TransactionSafeFragmentActivity
92 public InCallActivity() {
100 intent.setClass(context, InCallActivity.class);
115 LogUtil.i("InCallActivity.onCreate", "");
136 LogUtil.i("InCallActivity.onSaveInstanceState", "");
147 LogUtil.i("InCallActivity.onStart", "");
161 LogUtil.i("InCallActivity.onResume", "");
169 /** onPause is guaranteed to be called when the InCallActivity goes in the background. */
172 LogUtil.i("InCallActivity.onPause", "")
    [all...]
InCallPresenter.java 73 * Takes updates from the CallList and notifies the InCallActivity (UI) of the changes. Responsible
127 private InCallActivity mInCallActivity;
402 public void unsetActivity(InCallActivity inCallActivity) {
403 if (inCallActivity == null) {
407 Log.i(this, "No InCallActivity currently set, no need to unset.");
410 if (mInCallActivity != inCallActivity) {
413 "Second instance of InCallActivity is trying to unregister when another"
421 * Updates the current instance of {@link InCallActivity} with the provided one. If a {@code null}
424 private void updateActivity(InCallActivity inCallActivity)
    [all...]

Completed in 101 milliseconds