aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/ui/sidepanel/SettingsFragment.java
blob: 6a5b510ce477045b2aac665469a40594f286ae52 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
 * 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.ui.sidepanel;

import static com.android.tv.Features.TUNER;

import android.app.ApplicationErrorReport;
import android.content.Intent;
import android.media.tv.TvInputInfo;
import android.view.View;
import android.widget.Toast;

import com.android.tv.MainActivity;
import com.android.tv.R;
import com.android.tv.TvApplication;
import com.android.tv.customization.TvCustomizationManager;
import com.android.tv.dialog.PinDialogFragment;
import com.android.tv.license.LicenseSideFragment;
import com.android.tv.license.Licenses;
import com.android.tv.tuner.TunerPreferences;
import com.android.tv.util.PermissionUtils;
import com.android.tv.util.SetupUtils;
import com.android.tv.util.Utils;

import java.util.ArrayList;
import java.util.List;

/**
 * Shows Live TV settings.
 */
public class SettingsFragment extends SideFragment {
    private static final String TRACKER_LABEL = "settings";

    @Override
    protected String getTitle() {
        return getResources().getString(R.string.side_panel_title_settings);
    }

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

    @Override
    protected List<Item> getItemList() {
        List<Item> items = new ArrayList<>();
        final Item customizeChannelListItem = new SubMenuItem(
                getString(R.string.settings_channel_source_item_customize_channels),
                getString(R.string.settings_channel_source_item_customize_channels_description),
                getMainActivity().getOverlayManager().getSideFragmentManager()) {
            @Override
            protected SideFragment getFragment() {
                return new CustomizeChannelListFragment();
            }

            @Override
            protected void onBind(View view) {
                super.onBind(view);
                setEnabled(false);
            }

            @Override
            protected void onUpdate() {
                super.onUpdate();
                setEnabled(getChannelDataManager().getChannelCount() != 0);
            }
        };
        customizeChannelListItem.setEnabled(false);
        items.add(customizeChannelListItem);
        final MainActivity activity = getMainActivity();
        boolean hasNewInput = SetupUtils.getInstance(activity)
                .hasNewInput(activity.getTvInputManagerHelper());
        items.add(new ActionItem(
                getString(R.string.settings_channel_source_item_setup),
                hasNewInput ? getString(R.string.settings_channel_source_item_setup_new_inputs)
                        : null) {
            @Override
            protected void onSelected() {
                closeFragment();
                activity.getOverlayManager().showSetupFragment();
            }
        });
        if (PermissionUtils.hasModifyParentalControls(getMainActivity())) {
            items.add(new ActionItem(
                    getString(R.string.settings_parental_controls), getString(
                    activity.getParentalControlSettings().isParentalControlsEnabled()
                            ? R.string.option_toggle_parental_controls_on
                            : R.string.option_toggle_parental_controls_off)) {
                @Override
                protected void onSelected() {
                    getMainActivity().getOverlayManager()
                            .getSideFragmentManager().hideSidePanel(true);
                    PinDialogFragment fragment = PinDialogFragment
                            .create(PinDialogFragment.PIN_DIALOG_TYPE_ENTER_PIN);
                    getMainActivity().getOverlayManager()
                            .showDialogFragment(PinDialogFragment.DIALOG_TAG, fragment, true);
                }
            });
        } else {
            // Note: parental control is turned off, when MODIFY_PARENTAL_CONTROLS is not granted.
            // But, we may be able to turn on channel lock feature regardless of the permission.
            // It's TBD.
        }
        boolean showTrickplaySetting = false;
        if (TUNER.isEnabled(getContext())) {
            for (TvInputInfo inputInfo : TvApplication.getSingletons(getContext())
                    .getTvInputManagerHelper().getTvInputInfos(true, true)) {
                if (Utils.isInternalTvInput(getContext(), inputInfo.getId())) {
                    showTrickplaySetting = true;
                    break;
                }
            }
            if (showTrickplaySetting) {
                showTrickplaySetting =
                        TvCustomizationManager.getTrickplayMode(getContext())
                                == TvCustomizationManager.TRICKPLAY_MODE_ENABLED;
            }
        }
        if (showTrickplaySetting) {
            items.add(
                    new SwitchItem(getString(R.string.settings_trickplay),
                            getString(R.string.settings_trickplay),
                            getString(R.string.settings_trickplay_description),
                            getResources().getInteger(R.integer.trickplay_description_max_lines)) {
                        @Override
                        protected void onUpdate() {
                            super.onUpdate();
                            boolean enabled = TunerPreferences.getTrickplaySetting(getContext())
                                    != TunerPreferences.TRICKPLAY_SETTING_DISABLED;
                            setChecked(enabled);
                        }

                        @Override
                        protected void onSelected() {
                            super.onSelected();
                            @TunerPreferences.TrickplaySetting int setting =
                                    isChecked() ? TunerPreferences.TRICKPLAY_SETTING_ENABLED
                                            : TunerPreferences.TRICKPLAY_SETTING_DISABLED;
                            TunerPreferences.setTrickplaySetting(getContext(), setting);
                        }
                    });
        }
        items.add(new ActionItem(getString(R.string.settings_send_feedback)) {
            @Override
            protected void onSelected() {
                Intent intent = new Intent(Intent.ACTION_APP_ERROR);
                ApplicationErrorReport report = new ApplicationErrorReport();
                report.packageName = report.processName = getContext().getPackageName();
                report.time = System.currentTimeMillis();
                report.type = ApplicationErrorReport.TYPE_NONE;
                intent.putExtra(Intent.EXTRA_BUG_REPORT, report);
                startActivityForResult(intent, 0);
            }
        });
        if (Licenses.hasLicenses(getContext())) {
            items.add(
                    new SubMenuItem(
                            getString(R.string.settings_menu_licenses),
                            getMainActivity().getOverlayManager().getSideFragmentManager()) {
                        @Override
                        protected SideFragment getFragment() {
                            return new LicenseSideFragment();
                        }
                    });
        }
        // Show version.
        SimpleActionItem version = new SimpleActionItem(getString(R.string.settings_menu_version),
                ((TvApplication) activity.getApplicationContext()).getVersionName());
        version.setClickable(false);
        items.add(version);
        return items;
    }

    @Override
    public void onResume() {
        super.onResume();
        if (getChannelDataManager().areAllChannelsHidden()) {
            Toast.makeText(getActivity(), R.string.msg_all_channels_hidden, Toast.LENGTH_SHORT)
                    .show();
        }
    }
}