Search in sources :

Example 51 with Lifecycle

use of com.android.settingslib.core.lifecycle.Lifecycle in project platform_packages_apps_Settings by BlissRoms.

the class LockscreenDashboardFragment method getPreferenceControllers.

@Override
protected List<AbstractPreferenceController> getPreferenceControllers(Context context) {
    final List<AbstractPreferenceController> controllers = new ArrayList<>();
    final Lifecycle lifecycle = getLifecycle();
    final LockScreenNotificationPreferenceController notificationController = new LockScreenNotificationPreferenceController(context, KEY_LOCK_SCREEN_NOTIFICATON, KEY_LOCK_SCREEN_NOTIFICATON_WORK_PROFILE_HEADER, KEY_LOCK_SCREEN_NOTIFICATON_WORK_PROFILE);
    lifecycle.addObserver(notificationController);
    controllers.add(notificationController);
    final AddUserWhenLockedPreferenceController addUserWhenLockedController = new AddUserWhenLockedPreferenceController(context);
    lifecycle.addObserver(addUserWhenLockedController);
    controllers.add(addUserWhenLockedController);
    mOwnerInfoPreferenceController = new OwnerInfoPreferenceController(context, this, lifecycle);
    controllers.add(mOwnerInfoPreferenceController);
    return controllers;
}
Also used : AbstractPreferenceController(com.android.settingslib.core.AbstractPreferenceController) Lifecycle(com.android.settingslib.core.lifecycle.Lifecycle) ArrayList(java.util.ArrayList) LockScreenNotificationPreferenceController(com.android.settings.notification.LockScreenNotificationPreferenceController) AddUserWhenLockedPreferenceController(com.android.settings.accounts.AddUserWhenLockedPreferenceController)

Example 52 with Lifecycle

use of com.android.settingslib.core.lifecycle.Lifecycle in project platform_packages_apps_Settings by BlissRoms.

the class VpnPreferenceControllerTest method setUp.

@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    when(mContext.getSystemService(Context.CONNECTIVITY_SERVICE)).thenReturn(mConnectivityManager);
    when(mBinder.queryLocalInterface("android.net.IConnectivityManager")).thenReturn(mConnectivityManagerService);
    ShadowServiceManager.addService(Context.CONNECTIVITY_SERVICE, mBinder);
    when(mScreen.findPreference(anyString())).thenReturn(mPreference);
    mController = spy(new VpnPreferenceController(mContext));
    mLifecycle = new Lifecycle();
    mLifecycle.addObserver(mController);
}
Also used : Lifecycle(com.android.settingslib.core.lifecycle.Lifecycle) Before(org.junit.Before)

Example 53 with Lifecycle

use of com.android.settingslib.core.lifecycle.Lifecycle in project platform_packages_apps_Settings by BlissRoms.

the class WifiP2PPreferenceControllerTest method setUp.

@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    mLifecycle = new Lifecycle();
    when(mContext.getSystemService(WifiManager.class)).thenReturn(mWifiManager);
    when(mScreen.findPreference(anyString())).thenReturn(mWifiDirectPreference);
    mController = new WifiP2pPreferenceController(mContext, mLifecycle, mWifiManager);
}
Also used : Lifecycle(com.android.settingslib.core.lifecycle.Lifecycle) Before(org.junit.Before)

Example 54 with Lifecycle

use of com.android.settingslib.core.lifecycle.Lifecycle in project platform_packages_apps_Settings by BlissRoms.

the class WpsPreferenceControllerTest method setUp.

@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    mLifecycle = new Lifecycle();
    when(mContext.getSystemService(WifiManager.class)).thenReturn(mWifiManager);
    when(mScreen.findPreference(anyString())).thenReturn(mWpsPushPref).thenReturn(mWpsPinPref);
    mController = new WpsPreferenceController(mContext, mLifecycle, mWifiManager, mFragmentManager);
}
Also used : Lifecycle(com.android.settingslib.core.lifecycle.Lifecycle) Before(org.junit.Before)

Example 55 with Lifecycle

use of com.android.settingslib.core.lifecycle.Lifecycle in project platform_packages_apps_Settings by BlissRoms.

the class WifiDetailActionBarObserverTest method setUp.

@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    mLifecycle = new Lifecycle();
    when(mockFragment.getActivity()).thenReturn(mockActivity);
    when(mockActivity.getActionBar()).thenReturn(mockActionBar);
    mObserver = new WifiDetailActionBarObserver(mContext, mockFragment);
    mLifecycle.addObserver(mObserver);
}
Also used : Lifecycle(com.android.settingslib.core.lifecycle.Lifecycle) Before(org.junit.Before)

Aggregations

Lifecycle (com.android.settingslib.core.lifecycle.Lifecycle)259 Before (org.junit.Before)218 AbstractPreferenceController (com.android.settingslib.core.AbstractPreferenceController)33 ArrayList (java.util.ArrayList)32 PreferenceManager (androidx.preference.PreferenceManager)16 Preference (androidx.preference.Preference)15 TextView (android.widget.TextView)11 SettingsActivity (com.android.settings.SettingsActivity)10 Handler (android.os.Handler)9 LinkProperties (android.net.LinkProperties)8 Network (android.net.Network)8 NetworkRequest (android.net.NetworkRequest)8 LockScreenNotificationPreferenceController (com.android.settings.notification.LockScreenNotificationPreferenceController)8 BluetoothManager (android.bluetooth.BluetoothManager)7 Intent (android.content.Intent)7 PreferenceCategory (androidx.preference.PreferenceCategory)7 SwitchBar (com.android.settings.widget.SwitchBar)7 BluetoothCodecConfig (android.bluetooth.BluetoothCodecConfig)6 Bundle (android.os.Bundle)6 RecyclerView (android.support.v7.widget.RecyclerView)6