1. Print settings already support managed profile. Follow the UI of that. ProfileSettingsPreferenceFragment is created to act as the base class for per-profile setting. 2. Only show browser and dialer default setting in managed profile. BUG=26707733 Change-Id: I20d00203e14db58ec03638f692dd83a1bd50c59c
75 lines
2.9 KiB
Java
75 lines
2.9 KiB
Java
/*
|
|
* 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.settings.utils;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
import android.view.View;
|
|
import android.widget.AdapterView;
|
|
import android.widget.Spinner;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.SettingsPreferenceFragment;
|
|
import com.android.settingslib.drawer.UserAdapter;
|
|
|
|
/**
|
|
* Base fragment class for per profile settings.
|
|
*/
|
|
public abstract class ProfileSettingsPreferenceFragment extends SettingsPreferenceFragment {
|
|
|
|
@Override
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
super.onViewCreated(view, savedInstanceState);
|
|
final UserManager um = (UserManager) getSystemService(Context.USER_SERVICE);
|
|
final UserAdapter profileSpinnerAdapter =
|
|
UserAdapter.createUserSpinnerAdapter(um, getActivity());
|
|
if (profileSpinnerAdapter != null) {
|
|
final Spinner spinner = (Spinner) setPinnedHeaderView(R.layout.spinner_view);
|
|
spinner.setAdapter(profileSpinnerAdapter);
|
|
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
|
|
@Override
|
|
public void onItemSelected(AdapterView<?> parent, View view, int position,
|
|
long id) {
|
|
UserHandle selectedUser = profileSpinnerAdapter.getUserHandle(position);
|
|
if (selectedUser.getIdentifier() != UserHandle.myUserId()) {
|
|
Intent intent = new Intent(getIntentActionString());
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
|
getActivity().startActivityAsUser(intent, selectedUser);
|
|
// Go back to default selection, which is the first one
|
|
spinner.setSelection(0);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onNothingSelected(AdapterView<?> parent) {
|
|
// Nothing to do
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return intent action string that will bring user to this fragment.
|
|
*/
|
|
protected abstract String getIntentActionString();
|
|
|
|
}
|