blob: 10addf1822c961759e6daf12e0a70202deb2aba3 (
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
|
package com.android.settings.profiles;
import android.app.Profile;
import android.app.ProfileManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.provider.Settings;
public class SetupDefaultProfileReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (Settings.System.getInt(context.getContentResolver(),
Settings.System.SYSTEM_PROFILES_ENABLED, 1) == 1) {
ProfileManager profileManager = (ProfileManager) context
.getSystemService(Context.PROFILE_SERVICE);
Profile defaultProfile = profileManager.getProfile("Default");
if (defaultProfile != null) {
SetupActionsFragment.fillProfileWithCurrentSettings(context, defaultProfile);
profileManager.updateProfile(defaultProfile);
}
}
}
}
|