Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9a89b27 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

Merge "Fixing Null Pointer exception due to uninitialized view reference." into lmp-mr1-dev

parents 9ad88c9f f7fda6fe
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -736,13 +736,14 @@ public class CallCardFragment extends BaseFragment<CallCardPresenter, CallCardPr
            mSecondaryCallName = (TextView) getView().findViewById(R.id.secondaryCallName);
            mSecondaryCallConferenceCallIcon =
                    getView().findViewById(R.id.secondaryCallConferenceCallIcon);
            if (hasProvider) {
        }

        if (mSecondaryCallProviderLabel == null && hasProvider) {
            mSecondaryCallProviderInfo.setVisibility(View.VISIBLE);
            mSecondaryCallProviderLabel = (TextView) getView()
                    .findViewById(R.id.secondaryCallProviderLabel);
        }
    }
    }

    public void dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
        if (event.getEventType() == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {