1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.settings.dashboard.profileselector;
18 
19 import android.os.Bundle;
20 
21 import androidx.fragment.app.Fragment;
22 
23 import com.android.settings.R;
24 import com.android.settings.SettingsActivity;
25 import com.android.settings.location.LocationPersonalSettings;
26 import com.android.settings.location.LocationSwitchBarController;
27 import com.android.settings.location.LocationWorkProfileSettings;
28 import com.android.settings.widget.SwitchBar;
29 
30 /**
31  * Location Setting page for personal/managed profile.
32  */
33 public class ProfileSelectLocationFragment extends ProfileSelectFragment {
34 
35     @Override
onActivityCreated(Bundle savedInstanceState)36     public void onActivityCreated(Bundle savedInstanceState) {
37         super.onActivityCreated(savedInstanceState);
38         final SettingsActivity activity = (SettingsActivity) getActivity();
39         final SwitchBar switchBar = activity.getSwitchBar();
40         switchBar.setSwitchBarText(R.string.location_settings_master_switch_title,
41                 R.string.location_settings_master_switch_title);
42         final LocationSwitchBarController switchBarController = new LocationSwitchBarController(
43                 activity, switchBar, getSettingsLifecycle());
44         switchBar.show();
45     }
46 
47     @Override
getFragments()48     public Fragment[] getFragments() {
49 
50         final Bundle workOnly = new Bundle();
51         workOnly.putInt(EXTRA_PROFILE, ProfileSelectFragment.ProfileType.WORK);
52         final Fragment workFragment = new LocationWorkProfileSettings();
53         workFragment.setArguments(workOnly);
54 
55         final Bundle personalOnly = new Bundle();
56         personalOnly.putInt(EXTRA_PROFILE, ProfileSelectFragment.ProfileType.PERSONAL);
57         final Fragment personalFragment = new LocationPersonalSettings();
58         personalFragment.setArguments(personalOnly);
59         return new Fragment[]{
60                 personalFragment,
61                 workFragment
62         };
63     }
64 }
65