• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 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.car.settings.profiles;
18 
19 import android.car.drivingstate.CarUxRestrictions;
20 import android.content.Context;
21 import android.content.pm.UserInfo;
22 import android.os.UserManager;
23 
24 import androidx.preference.Preference;
25 import androidx.preference.PreferenceGroup;
26 
27 import com.android.car.settings.R;
28 import com.android.car.settings.common.FragmentController;
29 
30 /** Business logic for populating the profiles for the profiles list settings. */
31 public class ProfilesListPreferenceController extends ProfilesBasePreferenceController {
32 
ProfilesListPreferenceController(Context context, String preferenceKey, FragmentController fragmentController, CarUxRestrictions uxRestrictions)33     public ProfilesListPreferenceController(Context context, String preferenceKey,
34             FragmentController fragmentController, CarUxRestrictions uxRestrictions) {
35         super(context, preferenceKey, fragmentController, uxRestrictions);
36     }
37 
38     @Override
profileClicked(UserInfo userInfo)39     protected void profileClicked(UserInfo userInfo) {
40         if (ProfileUtils.isAdminViewingNonAdmin(UserManager.get(getContext()), userInfo)) {
41             // Admin viewing non admin.
42             getFragmentController().launchFragment(
43                     ProfileDetailsPermissionsFragment.newInstance(userInfo.id));
44         } else {
45             getFragmentController().launchFragment(ProfileDetailsFragment.newInstance(userInfo.id));
46         }
47     }
48 
49     @Override
updateState(PreferenceGroup preferenceGroup)50     protected void updateState(PreferenceGroup preferenceGroup) {
51         super.updateState(preferenceGroup);
52 
53         if (getProfilesToDisplay().isEmpty()) {
54             // Post the fragment navigation because FragmentManager may still be executing
55             // transactions
56             getContext().getMainExecutor().execute(() -> getFragmentController().goBack());
57         } else {
58             for (Preference preference : getProfilesToDisplay()) {
59                 preference.setWidgetLayoutResource(R.layout.preference_settings_icon);
60             }
61         }
62     }
63 }
64