Search in sources :

Example 21 with UiModeManager

use of android.app.UiModeManager in project android_packages_apps_Settings by omnirom.

the class NightModePreferenceController method displayPreference.

@Override
public void displayPreference(PreferenceScreen screen) {
    if (!isAvailable()) {
        setVisible(screen, KEY_NIGHT_MODE, false);
        return;
    }
    final ListPreference mNightModePreference = screen.findPreference(KEY_NIGHT_MODE);
    if (mNightModePreference != null) {
        final UiModeManager uiManager = (UiModeManager) mContext.getSystemService(UI_MODE_SERVICE);
        final int currentNightMode = uiManager.getNightMode();
        mNightModePreference.setValue(String.valueOf(currentNightMode));
        mNightModePreference.setOnPreferenceChangeListener(this);
    }
}
Also used : UiModeManager(android.app.UiModeManager) ListPreference(androidx.preference.ListPreference)

Example 22 with UiModeManager

use of android.app.UiModeManager in project platform_frameworks_base by android.

the class Recents method start.

@Override
public void start() {
    sDebugFlags = new RecentsDebugFlags(mContext);
    sSystemServicesProxy = SystemServicesProxy.getInstance(mContext);
    sTaskLoader = new RecentsTaskLoader(mContext);
    sConfiguration = new RecentsConfiguration(mContext);
    mHandler = new Handler();
    UiModeManager uiModeManager = (UiModeManager) mContext.getSystemService(Context.UI_MODE_SERVICE);
    if (uiModeManager.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION) {
        mImpl = new RecentsTvImpl(mContext);
    } else {
        mImpl = new RecentsImpl(mContext);
    }
    // Check if there is a recents override package
    if ("userdebug".equals(Build.TYPE) || "eng".equals(Build.TYPE)) {
        String cnStr = SystemProperties.get(RECENTS_OVERRIDE_SYSPROP_KEY);
        if (!cnStr.isEmpty()) {
            mOverrideRecentsPackageName = cnStr;
        }
    }
    // Register with the event bus
    EventBus.getDefault().register(this, EVENT_BUS_PRIORITY);
    EventBus.getDefault().register(sSystemServicesProxy, EVENT_BUS_PRIORITY);
    EventBus.getDefault().register(sTaskLoader, EVENT_BUS_PRIORITY);
    // Due to the fact that RecentsActivity is per-user, we need to establish and interface for
    // the system user's Recents component to pass events (like show/hide/toggleRecents) to the
    // secondary user, and vice versa (like visibility change, screen pinning).
    final int processUser = sSystemServicesProxy.getProcessUser();
    if (sSystemServicesProxy.isSystemUser(processUser)) {
        // For the system user, initialize an instance of the interface that we can pass to the
        // secondary user
        mSystemToUserCallbacks = new RecentsSystemUser(mContext, mImpl);
    } else {
        // For the secondary user, bind to the primary user's service to get a persistent
        // interface to register its implementation and to later update its state
        registerWithSystemUser();
    }
    putComponent(Recents.class, this);
}
Also used : RecentsTvImpl(com.android.systemui.recents.tv.RecentsTvImpl) UiModeManager(android.app.UiModeManager) Handler(android.os.Handler) RecentsTaskLoader(com.android.systemui.recents.model.RecentsTaskLoader) Point(android.graphics.Point)

Example 23 with UiModeManager

use of android.app.UiModeManager in project android_frameworks_base by DirtyUnicorns.

the class AppCompatibility method getLaunchIntentForPackage.

private Intent getLaunchIntentForPackage(String packageName) {
    UiModeManager umm = (UiModeManager) getInstrumentation().getContext().getSystemService(Context.UI_MODE_SERVICE);
    boolean isLeanback = umm.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION;
    Intent intent = null;
    if (isLeanback) {
        intent = mPackageManager.getLeanbackLaunchIntentForPackage(packageName);
    } else {
        intent = mPackageManager.getLaunchIntentForPackage(packageName);
    }
    return intent;
}
Also used : UiModeManager(android.app.UiModeManager) Intent(android.content.Intent)

Example 24 with UiModeManager

use of android.app.UiModeManager in project android_frameworks_base by DirtyUnicorns.

the class Recents method start.

@Override
public void start() {
    sDebugFlags = new RecentsDebugFlags(mContext);
    sSystemServicesProxy = SystemServicesProxy.getInstance(mContext);
    sTaskLoader = new RecentsTaskLoader(mContext);
    sConfiguration = new RecentsConfiguration(mContext);
    mHandler = new Handler();
    UiModeManager uiModeManager = (UiModeManager) mContext.getSystemService(Context.UI_MODE_SERVICE);
    if (uiModeManager.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION) {
        mImpl = new RecentsTvImpl(mContext);
    } else {
        mImpl = new RecentsImpl(mContext);
    }
    // Check if there is a recents override package
    if ("userdebug".equals(Build.TYPE) || "eng".equals(Build.TYPE)) {
        String cnStr = SystemProperties.get(RECENTS_OVERRIDE_SYSPROP_KEY);
        if (!cnStr.isEmpty()) {
            mOverrideRecentsPackageName = cnStr;
        }
    }
    // Register with the event bus
    EventBus.getDefault().register(this, EVENT_BUS_PRIORITY);
    EventBus.getDefault().register(sSystemServicesProxy, EVENT_BUS_PRIORITY);
    EventBus.getDefault().register(sTaskLoader, EVENT_BUS_PRIORITY);
    // Due to the fact that RecentsActivity is per-user, we need to establish and interface for
    // the system user's Recents component to pass events (like show/hide/toggleRecents) to the
    // secondary user, and vice versa (like visibility change, screen pinning).
    final int processUser = sSystemServicesProxy.getProcessUser();
    if (sSystemServicesProxy.isSystemUser(processUser)) {
        // For the system user, initialize an instance of the interface that we can pass to the
        // secondary user
        mSystemToUserCallbacks = new RecentsSystemUser(mContext, mImpl);
    } else {
        // For the secondary user, bind to the primary user's service to get a persistent
        // interface to register its implementation and to later update its state
        registerWithSystemUser();
    }
    putComponent(Recents.class, this);
}
Also used : RecentsTvImpl(com.android.systemui.recents.tv.RecentsTvImpl) UiModeManager(android.app.UiModeManager) Handler(android.os.Handler) RecentsTaskLoader(com.android.systemui.recents.model.RecentsTaskLoader) Point(android.graphics.Point)

Example 25 with UiModeManager

use of android.app.UiModeManager in project android_packages_apps_Settings by DirtyUnicorns.

the class NightModePreferenceController method onPreferenceChange.

@Override
public boolean onPreferenceChange(Preference preference, Object newValue) {
    try {
        final int value = Integer.parseInt((String) newValue);
        final UiModeManager uiManager = (UiModeManager) mContext.getSystemService(UI_MODE_SERVICE);
        uiManager.setNightMode(value);
    } catch (NumberFormatException e) {
        Log.e(TAG, "could not persist night mode setting", e);
        return false;
    }
    return true;
}
Also used : UiModeManager(android.app.UiModeManager)

Aggregations

UiModeManager (android.app.UiModeManager)32 ListPreference (android.support.v7.preference.ListPreference)6 Intent (android.content.Intent)5 Point (android.graphics.Point)5 Handler (android.os.Handler)5 RecentsTaskLoader (com.android.systemui.recents.model.RecentsTaskLoader)5 RecentsTvImpl (com.android.systemui.recents.tv.RecentsTvImpl)5 ListPreference (androidx.preference.ListPreference)2 TargetApi (android.annotation.TargetApi)1 Activity (android.app.Activity)1 ContentResolver (android.content.ContentResolver)1 Context (android.content.Context)1 SwitchPreference (android.support.v14.preference.SwitchPreference)1 PlaybackStateCompat (android.support.v4.media.session.PlaybackStateCompat)1 DropDownPreference (android.support.v7.preference.DropDownPreference)1 Preference (android.support.v7.preference.Preference)1 OnPreferenceChangeListener (android.support.v7.preference.Preference.OnPreferenceChangeListener)1 PreferenceCategory (android.support.v7.preference.PreferenceCategory)1 RestrictedPreference (com.android.settingslib.RestrictedPreference)1 TvPlaybackActivity (com.example.android.uamp.ui.tv.TvPlaybackActivity)1