Search in sources :

Example 26 with OverlayInfo

use of android.content.om.OverlayInfo in project android_frameworks_base by AOSPA.

the class OverlayManagerServiceImpl method updateAllOverlaysForTarget.

private void updateAllOverlaysForTarget(@NonNull final String packageName, final int userId, @Nullable final PackageInfo targetPackage) {
    final List<OverlayInfo> ois = mSettings.getOverlaysForTarget(packageName, userId);
    for (final OverlayInfo oi : ois) {
        final PackageInfo overlayPackage = mPackageManager.getPackageInfo(oi.packageName, userId);
        if (overlayPackage == null) {
            mSettings.remove(oi.packageName, oi.userId);
            removeIdmapIfPossible(oi);
        } else {
            try {
                updateState(targetPackage, overlayPackage, userId);
            } catch (OverlayManagerSettings.BadKeyException e) {
                Slog.e(TAG, "failed to update settings", e);
                mSettings.remove(oi.packageName, userId);
            }
        }
    }
}
Also used : PackageInfo(android.content.pm.PackageInfo) OverlayInfo(android.content.om.OverlayInfo)

Example 27 with OverlayInfo

use of android.content.om.OverlayInfo in project android_frameworks_base by ResurrectionRemix.

the class OverlayManagerServiceImpl method onOverlayPackageRemoved.

void onOverlayPackageRemoved(@NonNull final String packageName, final int userId) {
    if (DEBUG) {
        Slog.d(TAG, "onOverlayPackageRemoved packageName=" + packageName + " userId=" + userId);
    }
    try {
        final OverlayInfo oi = mSettings.getOverlayInfo(packageName, userId);
        mSettings.remove(packageName, userId);
        removeIdmapIfPossible(oi);
    } catch (OverlayManagerSettings.BadKeyException e) {
        Slog.e(TAG, "failed to remove overlay package", e);
    }
}
Also used : OverlayInfo(android.content.om.OverlayInfo)

Example 28 with OverlayInfo

use of android.content.om.OverlayInfo in project android_frameworks_base by ResurrectionRemix.

the class OverlayManagerServiceImpl method onOverlayPackageUpgrading.

void onOverlayPackageUpgrading(@NonNull final String packageName, final int userId) {
    if (DEBUG) {
        Slog.d(TAG, "onOverlayPackageUpgrading packageName=" + packageName + " userId=" + userId);
    }
    try {
        final OverlayInfo oi = mSettings.getOverlayInfo(packageName, userId);
        mSettings.setUpgrading(packageName, userId, true);
        removeIdmapIfPossible(oi);
    } catch (OverlayManagerSettings.BadKeyException e) {
        Slog.e(TAG, "failed to update settings", e);
        mSettings.remove(packageName, userId);
    }
}
Also used : OverlayInfo(android.content.om.OverlayInfo)

Example 29 with OverlayInfo

use of android.content.om.OverlayInfo in project android_frameworks_base by ResurrectionRemix.

the class OverlayManagerSettings method remove.

void remove(@NonNull final String packageName, final int userId) {
    final SettingsItem item = select(packageName, userId);
    if (item == null) {
        return;
    }
    final OverlayInfo oi = item.getOverlayInfo();
    mItems.remove(item);
    if (oi != null) {
        notifyOverlayRemoved(oi, false);
    }
}
Also used : OverlayInfo(android.content.om.OverlayInfo)

Example 30 with OverlayInfo

use of android.content.om.OverlayInfo in project android_frameworks_base by ResurrectionRemix.

the class OverlayManagerSettings method setUpgrading.

void setUpgrading(@NonNull final String packageName, final int userId, final boolean newValue) throws BadKeyException {
    final SettingsItem item = select(packageName, userId);
    if (item == null) {
        throw new BadKeyException(packageName, userId);
    }
    if (newValue == item.isUpgrading()) {
        // nothing to do
        return;
    }
    if (newValue) {
        final OverlayInfo oi = item.getOverlayInfo();
        item.setUpgrading(true);
        item.setState(STATE_NOT_APPROVED_UNKNOWN);
        notifyOverlayRemoved(oi, false);
    } else {
        item.setUpgrading(false);
    }
    notifySettingsChanged();
}
Also used : OverlayInfo(android.content.om.OverlayInfo)

Aggregations

OverlayInfo (android.content.om.OverlayInfo)41 PackageInfo (android.content.pm.PackageInfo)12 ArrayList (java.util.ArrayList)9 List (java.util.List)5 ArrayMap (android.util.ArrayMap)4 ArraySet (android.util.ArraySet)4 IOverlayManager (android.content.om.IOverlayManager)1 LocaleList (android.os.LocaleList)1 RemoteCallbackList (android.os.RemoteCallbackList)1 RemoteException (android.os.RemoteException)1