Search in sources :

Example 11 with ComponentCallbacks2

use of android.content.ComponentCallbacks2 in project android_frameworks_base by ResurrectionRemix.

the class ActivityThread method collectComponentCallbacks.

ArrayList<ComponentCallbacks2> collectComponentCallbacks(boolean allActivities, Configuration newConfig) {
    ArrayList<ComponentCallbacks2> callbacks = new ArrayList<ComponentCallbacks2>();
    synchronized (mResourcesManager) {
        final int NAPP = mAllApplications.size();
        for (int i = 0; i < NAPP; i++) {
            callbacks.add(mAllApplications.get(i));
        }
        final int NACT = mActivities.size();
        for (int i = 0; i < NACT; i++) {
            ActivityClientRecord ar = mActivities.valueAt(i);
            Activity a = ar.activity;
            if (a != null) {
                Configuration thisConfig = applyConfigCompatMainThread(mCurDefaultDisplayDpi, newConfig, ar.packageInfo.getCompatibilityInfo());
                if (!ar.activity.mFinished && (allActivities || !ar.paused)) {
                    // If the activity is currently resumed, its configuration
                    // needs to change right now.
                    callbacks.add(a);
                } else if (thisConfig != null) {
                    // configuration.
                    if (DEBUG_CONFIGURATION) {
                        Slog.v(TAG, "Setting activity " + ar.activityInfo.name + " newConfig=" + thisConfig);
                    }
                    ar.newConfig = thisConfig;
                }
            }
        }
        final int NSVC = mServices.size();
        for (int i = 0; i < NSVC; i++) {
            callbacks.add(mServices.valueAt(i));
        }
    }
    synchronized (mProviderMap) {
        final int NPRV = mLocalProviders.size();
        for (int i = 0; i < NPRV; i++) {
            callbacks.add(mLocalProviders.valueAt(i).mLocalProvider);
        }
    }
    return callbacks;
}
Also used : Configuration(android.content.res.Configuration) ArrayList(java.util.ArrayList) ComponentCallbacks2(android.content.ComponentCallbacks2)

Example 12 with ComponentCallbacks2

use of android.content.ComponentCallbacks2 in project android_frameworks_base by crdroidandroid.

the class ActivityThread method handleConfigurationChanged.

final void handleConfigurationChanged(Configuration config, CompatibilityInfo compat) {
    int configDiff = 0;
    synchronized (mResourcesManager) {
        if (mPendingConfiguration != null) {
            if (!mPendingConfiguration.isOtherSeqNewer(config)) {
                config = mPendingConfiguration;
                mCurDefaultDisplayDpi = config.densityDpi;
                updateDefaultDensity();
            }
            mPendingConfiguration = null;
        }
        if (config == null) {
            return;
        }
        if (DEBUG_CONFIGURATION)
            Slog.v(TAG, "Handle configuration changed: " + config);
        mResourcesManager.applyConfigurationToResourcesLocked(config, compat);
        updateLocaleListFromAppContext(mInitialApplication.getApplicationContext(), mResourcesManager.getConfiguration().getLocales());
        if (mConfiguration == null) {
            mConfiguration = new Configuration();
        }
        if (!mConfiguration.isOtherSeqNewer(config) && compat == null) {
            return;
        }
        configDiff = mConfiguration.updateFrom(config);
        config = applyCompatConfiguration(mCurDefaultDisplayDpi);
        final Theme systemTheme = getSystemContext().getTheme();
        if ((systemTheme.getChangingConfigurations() & configDiff) != 0) {
            systemTheme.rebase();
        }
    }
    ArrayList<ComponentCallbacks2> callbacks = collectComponentCallbacks(false, config);
    freeTextLayoutCachesIfNeeded(configDiff);
    if (callbacks != null) {
        final int N = callbacks.size();
        for (int i = 0; i < N; i++) {
            ComponentCallbacks2 cb = callbacks.get(i);
            if (cb instanceof Activity) {
                // If callback is an Activity - call corresponding method to consider override
                // config and avoid onConfigurationChanged if it hasn't changed.
                Activity a = (Activity) cb;
                performConfigurationChangedForActivity(mActivities.get(a.getActivityToken()), config, REPORT_TO_ACTIVITY);
            } else {
                performConfigurationChanged(cb, null, config, null, REPORT_TO_ACTIVITY);
            }
        }
    }
}
Also used : Configuration(android.content.res.Configuration) Theme(android.content.res.Resources.Theme) ComponentCallbacks2(android.content.ComponentCallbacks2)

Example 13 with ComponentCallbacks2

use of android.content.ComponentCallbacks2 in project android_frameworks_base by crdroidandroid.

the class ActivityThread method collectComponentCallbacks.

ArrayList<ComponentCallbacks2> collectComponentCallbacks(boolean allActivities, Configuration newConfig) {
    ArrayList<ComponentCallbacks2> callbacks = new ArrayList<ComponentCallbacks2>();
    synchronized (mResourcesManager) {
        final int NAPP = mAllApplications.size();
        for (int i = 0; i < NAPP; i++) {
            callbacks.add(mAllApplications.get(i));
        }
        final int NACT = mActivities.size();
        for (int i = 0; i < NACT; i++) {
            ActivityClientRecord ar = mActivities.valueAt(i);
            Activity a = ar.activity;
            if (a != null) {
                Configuration thisConfig = applyConfigCompatMainThread(mCurDefaultDisplayDpi, newConfig, ar.packageInfo.getCompatibilityInfo());
                if (!ar.activity.mFinished && (allActivities || !ar.paused)) {
                    // If the activity is currently resumed, its configuration
                    // needs to change right now.
                    callbacks.add(a);
                } else if (thisConfig != null) {
                    // configuration.
                    if (DEBUG_CONFIGURATION) {
                        Slog.v(TAG, "Setting activity " + ar.activityInfo.name + " newConfig=" + thisConfig);
                    }
                    ar.newConfig = thisConfig;
                }
            }
        }
        final int NSVC = mServices.size();
        for (int i = 0; i < NSVC; i++) {
            callbacks.add(mServices.valueAt(i));
        }
    }
    synchronized (mProviderMap) {
        final int NPRV = mLocalProviders.size();
        for (int i = 0; i < NPRV; i++) {
            callbacks.add(mLocalProviders.valueAt(i).mLocalProvider);
        }
    }
    return callbacks;
}
Also used : Configuration(android.content.res.Configuration) ArrayList(java.util.ArrayList) ComponentCallbacks2(android.content.ComponentCallbacks2)

Example 14 with ComponentCallbacks2

use of android.content.ComponentCallbacks2 in project android_frameworks_base by ParanoidAndroid.

the class ActivityThread method attach.

private void attach(boolean system) {
    sCurrentActivityThread = this;
    mSystemThread = system;
    if (!system) {
        ViewRootImpl.addFirstDrawHandler(new Runnable() {

            public void run() {
                ensureJitEnabled();
            }
        });
        android.ddm.DdmHandleAppName.setAppName("<pre-initialized>", UserHandle.myUserId());
        RuntimeInit.setApplicationObject(mAppThread.asBinder());
        IActivityManager mgr = ActivityManagerNative.getDefault();
        try {
            mgr.attachApplication(mAppThread);
        } catch (RemoteException ex) {
        // Ignore
        }
    } else {
        // Don't set application object here -- if the system crashes,
        // we can't display an alert, we just want to die die die.
        android.ddm.DdmHandleAppName.setAppName("system_process", UserHandle.myUserId());
        try {
            mInstrumentation = new Instrumentation();
            ContextImpl context = new ContextImpl();
            context.init(getSystemContext().mPackageInfo, null, this);
            Application app = Instrumentation.newApplication(Application.class, context);
            mAllApplications.add(app);
            mInitialApplication = app;
            app.onCreate();
        } catch (Exception e) {
            throw new RuntimeException("Unable to instantiate Application():" + e.toString(), e);
        }
    }
    // add dropbox logging to libcore
    DropBox.setReporter(new DropBoxReporter());
    ViewRootImpl.addConfigCallback(new ComponentCallbacks2() {

        public void onConfigurationChanged(Configuration newConfig) {
            synchronized (mPackages) {
                // hierarchy will be informed about it.
                if (applyConfigurationToResourcesLocked(newConfig, null) != 0) {
                    // everyone about it.
                    if (mPendingConfiguration == null || mPendingConfiguration.isOtherSeqNewer(newConfig)) {
                        mPendingConfiguration = newConfig;
                        queueOrSendMessage(H.CONFIGURATION_CHANGED, newConfig);
                    }
                }
            }
        }

        public void onLowMemory() {
        }

        public void onTrimMemory(int level) {
        }
    });
}
Also used : AndroidRuntimeException(android.util.AndroidRuntimeException) Configuration(android.content.res.Configuration) ComponentCallbacks2(android.content.ComponentCallbacks2) RemoteException(android.os.RemoteException) InflateException(android.view.InflateException) RemoteException(android.os.RemoteException) IOException(java.io.IOException) AndroidRuntimeException(android.util.AndroidRuntimeException) NameNotFoundException(android.content.pm.PackageManager.NameNotFoundException)

Example 15 with ComponentCallbacks2

use of android.content.ComponentCallbacks2 in project android_frameworks_base by ParanoidAndroid.

the class ActivityThread method handleTrimMemory.

final void handleTrimMemory(int level) {
    if (DEBUG_MEMORY_TRIM)
        Slog.v(TAG, "Trimming memory to level: " + level);
    final WindowManagerGlobal windowManager = WindowManagerGlobal.getInstance();
    windowManager.startTrimMemory(level);
    ArrayList<ComponentCallbacks2> callbacks = collectComponentCallbacks(true, null);
    final int N = callbacks.size();
    for (int i = 0; i < N; i++) {
        callbacks.get(i).onTrimMemory(level);
    }
    windowManager.endTrimMemory();
}
Also used : WindowManagerGlobal(android.view.WindowManagerGlobal) ComponentCallbacks2(android.content.ComponentCallbacks2)

Aggregations

ComponentCallbacks2 (android.content.ComponentCallbacks2)21 Configuration (android.content.res.Configuration)20 NameNotFoundException (android.content.pm.PackageManager.NameNotFoundException)7 RemoteException (android.os.RemoteException)7 AndroidRuntimeException (android.util.AndroidRuntimeException)7 IOException (java.io.IOException)7 ArrayList (java.util.ArrayList)6 Theme (android.content.res.Resources.Theme)5 TransactionTooLargeException (android.os.TransactionTooLargeException)5 ErrnoException (android.system.ErrnoException)5 SuperNotCalledException (android.util.SuperNotCalledException)5 VMRuntime (dalvik.system.VMRuntime)5 Context (android.content.Context)1 ContextWrapper (android.content.ContextWrapper)1 InflateException (android.view.InflateException)1 WindowManagerGlobal (android.view.WindowManagerGlobal)1