Home | History | Annotate | Download | only in incallui

Lines Matching refs:InCallActivity

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) {
428 if (inCallActivity != null) {
438 mInCallActivity = inCallActivity;
1244 // that will either start the InCallActivity or show the user a
1246 // That notification can also start the InCallActivity.
1247 // 5) InCallActivity - Main activity starts up and at the end of its onCreate will
1255 // incoming call HUN or the actual InCallActivity will be shown.
1284 // Another exception - InCallActivity
1429 Log.i(this, "Showing InCallActivity");
1431 InCallActivity.getIntent(
1470 InCallActivity.getIntent(mContext, false, true, false /* forFullScreen */);
1523 Log.e(this, "InCallActivity is null. Can't set requested orientation.");
1532 Log.e(this, "enableScreenTimeout: InCallActivity is null.");
1583 public InCallActivity getActivity() {
1588 public void setActivity(InCallActivity inCallActivity) {
1589 if (inCallActivity == null) {
1592 if (mInCallActivity != null && mInCallActivity != inCallActivity) {
1595 updateActivity(inCallActivity);
1627 /** All the main states of InCallActivity. */