aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/dialog/HalfSizedDialogFragment.java
blob: 315c6a93c14a53a35f784d4c692f3af235482e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright (C) 2016 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.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.os.Handler;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.android.tv.R;

import java.util.concurrent.TimeUnit;

public class HalfSizedDialogFragment extends SafeDismissDialogFragment {
    public static final String DIALOG_TAG = HalfSizedDialogFragment.class.getSimpleName();
    public static final String TRACKER_LABEL = "Half sized dialog";

    private static final long AUTO_DISMISS_TIME_THRESHOLD_MS = TimeUnit.SECONDS.toMillis(30);

    private OnActionClickListener mOnActionClickListener;

    private Handler mHandler = new Handler();
    private Runnable mAutoDismisser = new Runnable() {
        @Override
        public void run() {
            dismiss();
        }
    };

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.halfsized_dialog, container, false);
    }

    @Override
    public void onStart() {
        super.onStart();
        mHandler.postDelayed(mAutoDismisser, AUTO_DISMISS_TIME_THRESHOLD_MS);
    }

    @Override
    public void onPause() {
        super.onPause();
        if (mOnActionClickListener != null) {
            // Dismisses the dialog to prevent the callback being forgotten during
            // fragment re-creating.
            dismiss();
        }
    }

    @Override
    public void onStop() {
        super.onStop();
        mHandler.removeCallbacks(mAutoDismisser);
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        Dialog dialog = super.onCreateDialog(savedInstanceState);
        dialog.setOnKeyListener(new DialogInterface.OnKeyListener() {
            public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent keyEvent) {
                mHandler.removeCallbacks(mAutoDismisser);
                mHandler.postDelayed(mAutoDismisser, AUTO_DISMISS_TIME_THRESHOLD_MS);
                return false;
            }
        });
        return dialog;
    }

    @Override
    public int getTheme() {
        return R.style.Theme_TV_dialog_HalfSizedDialog;
    }

    @Override
    public String getTrackerLabel() {
        return TRACKER_LABEL;
    }

    /**
     * Sets {@link OnActionClickListener} for the dialog fragment. If listener is set, the dialog
     * will be automatically closed when it's paused to prevent the fragment being re-created by
     * the framework, which will result the listener being forgotten.
     */
    public void setOnActionClickListener(OnActionClickListener listener) {
        mOnActionClickListener = listener;
    }

    /**
     * Returns {@link OnActionClickListener} for sub-classes or any inner fragments.
     */
    protected OnActionClickListener getOnActionClickListener() {
        return mOnActionClickListener;
    }

    /**
     * An interface to provide callbacks for half-sized dialogs. Subclasses or inner fragments
     * should invoke {@link OnActionClickListener#onActionClick(long)} and provide the identifier
     * of the action user clicked.
     */
    public interface OnActionClickListener {
        void onActionClick(long actionId);
    }
}