blob: 6eb67dfdeec0d5acfe0dd75279810ac21eb4d10b [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tv.dialog;
import android.app.Activity;
import android.app.DialogFragment;
import com.android.tv.MainActivity;
import com.android.tv.TvSingletons;
import com.android.tv.analytics.HasTrackerLabel;
import com.android.tv.analytics.Tracker;
/** Provides the safe dismiss feature regardless of the DialogFragment's life cycle. */
public abstract class SafeDismissDialogFragment extends DialogFragment implements HasTrackerLabel {
private MainActivity mActivity;
private boolean mAttached = false;
private boolean mDismissPending = false;
private Tracker mTracker;
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
mAttached = true;
if (activity instanceof MainActivity) {
mActivity = (MainActivity) activity;
}
mTracker = TvSingletons.getSingletons(activity).getTracker();
if (mDismissPending) {
mDismissPending = false;
dismiss();
}
}
@Override
public void onResume() {
super.onResume();
mTracker.sendScreenView(getTrackerLabel());
}
@Override
public void onDestroy() {
if (mActivity != null) {
mActivity.getOverlayManager().onDialogDestroyed();
}
super.onDestroy();
}
@Override
public void onDetach() {
super.onDetach();
mAttached = false;
mTracker = null;
}
/** Dismiss safely regardless of the DialogFragment's life cycle. */
@Override
public void dismiss() {
if (!mAttached) {
// dismiss() before getFragmentManager() is set cause NPE in dismissInternal().
// FragmentManager is set when a fragment is used in a transaction,
// so wait here until we can dismiss safely.
mDismissPending = true;
} else {
super.dismiss();
}
}
}