In a series of CLs under topic add_ui_for_hsum_admins UI and functionality for allowing multiple admins on HSUM build is added. In User settings and User switcher when creating a new user there is a new dialog prompting to choose admin status of the user to be created. In User details view there is a toggle that is visible to admin users that allows to modify admin status of existing users. This toggle is only applicable to full users that are not supervised, guests or a main device user. Bug: 252790451 Test: croot && make RunSettingsRoboTests -j40 ROBOTEST_FILTER="com.android.settings.users.UserDetailsSettingsTest" Change-Id: I447dc168be30aa614aeb3f8b71ad14a7223fd7c1
47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2014 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.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
<com.android.settingslib.RestrictedPreference
|
|
android:key="switch_user"
|
|
android:icon="@drawable/ic_swap" />
|
|
<SwitchPreference
|
|
android:key="user_grant_admin"
|
|
android:icon="@drawable/ic_admin_panel_settings"
|
|
android:title="@string/user_grant_admin" />
|
|
<SwitchPreference
|
|
android:key="enable_calling"
|
|
android:icon="@drawable/ic_phone"
|
|
android:title="@string/user_enable_calling_sms" />
|
|
<com.android.settingslib.RestrictedPreference
|
|
android:key="app_and_content_access"
|
|
android:icon="@drawable/ic_lock_closed"
|
|
android:title="@string/user_restrictions_title" />
|
|
<com.android.settingslib.RestrictedPreference
|
|
android:key="app_copying"
|
|
android:icon="@drawable/ic_apps"
|
|
android:title="@string/user_copy_apps_menu_title" />
|
|
<com.android.settingslib.RestrictedPreference
|
|
android:key="remove_user"
|
|
android:icon="@drawable/ic_delete"
|
|
settings:userRestriction="no_remove_user"
|
|
settings:useAdminDisabledSummary="true" />
|
|
|
|
</PreferenceScreen>
|