当前位置: 首页>>代码示例>>Java>>正文


Java VActivityManagerService类代码示例

本文整理汇总了Java中com.lody.virtual.server.am.VActivityManagerService的典型用法代码示例。如果您正苦于以下问题:Java VActivityManagerService类的具体用法?Java VActivityManagerService怎么用?Java VActivityManagerService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


VActivityManagerService类属于com.lody.virtual.server.am包,在下文中一共展示了VActivityManagerService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
@Override
public boolean onCreate() {
    Context context = getContext();
    DaemonService.startup(context);
    if (!VirtualCore.get().isStartup()) {
        return true;
    }
    VPackageManagerService.systemReady();
    addService(ServiceManagerNative.PACKAGE, VPackageManagerService.get());
    VActivityManagerService.systemReady(context);
    addService(ServiceManagerNative.ACTIVITY, VActivityManagerService.get());
    addService(ServiceManagerNative.USER, VUserManagerService.get());
    VAppManagerService.systemReady();
    addService(ServiceManagerNative.APP, VAppManagerService.get());
    BroadcastSystem.attach(VActivityManagerService.get(), VAppManagerService.get());
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        addService(ServiceManagerNative.JOB, VJobSchedulerService.get());
    }
    VNotificationManagerService.systemReady(context);
    addService(ServiceManagerNative.NOTIFICATION, VNotificationManagerService.get());
    VAppManagerService.get().scanApps();
    VAccountManagerService.systemReady();
    addService(ServiceManagerNative.ACCOUNT, VAccountManagerService.get());
    addService(ServiceManagerNative.VS, VirtualStorageService.get());
    return true;
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:27,代码来源:BinderProvider.java

示例2: uninstallPackageAsUser

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
@Override
public synchronized boolean uninstallPackageAsUser(String packageName, int userId) {
    if (!VUserManagerService.get().exists(userId)) {
        return false;
    }
    PackageSetting ps = PackageCacheManager.getSetting(packageName);
    if (ps != null) {
        int[] userIds = getPackageInstalledUsers(packageName);
        if (!ArrayUtils.contains(userIds, userId)) {
            return false;
        }
        if (userIds.length == 1) {
            uninstallPackageFully(ps);
        } else {
            // Just hidden it
            VActivityManagerService.get().killAppByPkg(packageName, userId);
            ps.setInstalled(userId, false);
            notifyAppUninstalled(ps, userId);
            mPersistenceLayer.save();
            FileUtils.deleteDir(VEnvironment.getDataUserPackageDirectory(userId, packageName));
        }
        return true;
    }
    return false;
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:26,代码来源:VAppManagerService.java

示例3: uninstallPackageFully

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void uninstallPackageFully(PackageSetting ps) {
    String packageName = ps.packageName;
    try {
        BroadcastSystem.get().stopApp(packageName);
        VActivityManagerService.get().killAppByPkg(packageName, VUserHandle.USER_ALL);
        VEnvironment.getPackageResourcePath(packageName).delete();
        FileUtils.deleteDir(VEnvironment.getDataAppPackageDirectory(packageName));
        VEnvironment.getOdexFile(packageName).delete();
        for (int id : VUserManagerService.get().getUserIds()) {
            FileUtils.deleteDir(VEnvironment.getDataUserPackageDirectory(id, packageName));
        }
        PackageCacheManager.remove(packageName);
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        notifyAppUninstalled(ps, -1);
    }
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:19,代码来源:VAppManagerService.java

示例4: onCreate

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
@Override
public boolean onCreate() {
    Context context = getContext();
    DaemonService.startup(context);
    if (!VirtualCore.get().isStartup()) {
        return true;
    }
    VPackageManagerService.systemReady();
    addService(ServiceManagerNative.PACKAGE, VPackageManagerService.get());
    VActivityManagerService.systemReady(context);
    addService(ServiceManagerNative.ACTIVITY, VActivityManagerService.get());
    addService(ServiceManagerNative.USER, VUserManagerService.get());
    VAppManagerService.systemReady();
    addService(ServiceManagerNative.APP, VAppManagerService.get());
    BroadcastSystem.attach(VActivityManagerService.get(), VAppManagerService.get());
    VAccountManagerService.systemReady();
    addService(ServiceManagerNative.ACCOUNT, VAccountManagerService.get());
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        addService(ServiceManagerNative.JOB, VJobSchedulerService.get());
    }
    VNotificationManagerService.systemReady(context);
    addService(ServiceManagerNative.NOTIFICATION, VNotificationManagerService.get());
    VAppManagerService.get().preloadAllApps();
    return true;
}
 
开发者ID:codehz,项目名称:container,代码行数:26,代码来源:BinderProvider.java

示例5: uninstallApp

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
public boolean uninstallApp(String pkg) {
    synchronized (PackageCache.sPackageCaches) {
        AppSetting setting = findAppInfo(pkg);
        if (setting != null) {
            try {
                BroadcastSystem.get().stopApp(pkg);
                VActivityManagerService.get().killAppByPkg(pkg, VUserHandle.USER_ALL);
                FileUtils.deleteDir(VEnvironment.getDataAppPackageDirectory(pkg));
                VEnvironment.getOdexFile(pkg).delete();
                for (int userId : VUserManagerService.get().getUserIds()) {
                    FileUtils.deleteDir(VEnvironment.getDataUserPackageDirectory(userId, pkg));
                }
                PackageCache.remove(pkg);
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                notifyAppUninstalled(setting);
            }
            return true;
        }
    }
    return false;
}
 
开发者ID:codehz,项目名称:container,代码行数:24,代码来源:VAppManagerService.java

示例6: broadcastCheckInNowIfNeed

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void broadcastCheckInNowIfNeed(int userId) {
	long time = System.currentTimeMillis();
	if (Math.abs(time - lastAccountChangeTime) > CHECK_IN_TIME) {
		lastAccountChangeTime = time;
		saveAllAccounts();
		Intent intent = new Intent("android.server.checkin.CHECKIN_NOW");
		VActivityManagerService.get().sendBroadcastAsUser(intent, new VUserHandle(userId));
	}
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:10,代码来源:VAccountManagerService.java

示例7: sendInstalledBroadcast

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void sendInstalledBroadcast(String packageName) {
    Intent intent = new Intent(Intent.ACTION_PACKAGE_ADDED);
    intent.setData(Uri.parse("package:" + packageName));
    VActivityManagerService.get().sendBroadcastAsUser(intent, VUserHandle.ALL);
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:6,代码来源:VAppManagerService.java

示例8: sendUninstalledBroadcast

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void sendUninstalledBroadcast(String packageName) {
    Intent intent = new Intent(Intent.ACTION_PACKAGE_REMOVED);
    intent.setData(Uri.parse("package:" + packageName));
    VActivityManagerService.get().sendBroadcastAsUser(intent, VUserHandle.ALL);
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:6,代码来源:VAppManagerService.java

示例9: finishRemoveUser

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
void finishRemoveUser(final int userHandle) {
    if (DBG) VLog.i(LOG_TAG, "finishRemoveUser " + userHandle);
    // Let other services shutdown any activity and clean up their state before completely
    // wiping the user's system directory and removing from the user list
    long identity = Binder.clearCallingIdentity();
    try {
        Intent addedIntent = new Intent(Constants.ACTION_USER_REMOVED);
        addedIntent.putExtra(Constants.EXTRA_USER_HANDLE, userHandle);
        VActivityManagerService.get().sendOrderedBroadcastAsUser(addedIntent, VUserHandle.ALL,
               null,
                new BroadcastReceiver() {
                    @Override
                    public void onReceive(Context context, Intent intent) {
                        if (DBG) {
                            VLog.i(LOG_TAG,
                                    "USER_REMOVED broadcast sent, cleaning up user data "
                                    + userHandle);
                        }
                        new Thread() {
                            public void run() {
                                synchronized (mInstallLock) {
                                    synchronized (mPackagesLock) {
                                        removeUserStateLocked(userHandle);
                                    }
                                }
                            }
                        }.start();
                    }
                },
                null, Activity.RESULT_OK, null, null);
    } finally {
        Binder.restoreCallingIdentity(identity);
    }
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:35,代码来源:VUserManagerService.java

示例10: broadcastCheckInNowIfNeed

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void broadcastCheckInNowIfNeed(int userId) {
    long time = System.currentTimeMillis();
    if (Math.abs(time - lastAccountChangeTime) > CHECK_IN_TIME) {
        lastAccountChangeTime = time;
        saveAllAccounts();
        Intent intent = new Intent("android.server.checkin.CHECKIN_NOW");
        VActivityManagerService.get().sendBroadcastAsUser(intent, new VUserHandle(userId));
    }
}
 
开发者ID:coding-dream,项目名称:TPlayer,代码行数:10,代码来源:VAccountManagerService.java

示例11: onCreate

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
@Override
public boolean onCreate() {
    Context context = getContext();
    DaemonService.startup(context);
    if (!VirtualCore.get().isStartup()) {
        return true;
    }
    VPackageManagerService.systemReady();
    addService(ServiceManagerNative.PACKAGE, VPackageManagerService.get());
    VActivityManagerService.systemReady(context);
    addService(ServiceManagerNative.ACTIVITY, VActivityManagerService.get());
    addService(ServiceManagerNative.USER, VUserManagerService.get());
    VAppManagerService.systemReady();
    addService(ServiceManagerNative.APP, VAppManagerService.get());
    BroadcastSystem.attach(VActivityManagerService.get(), VAppManagerService.get());
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        addService(ServiceManagerNative.JOB, VJobSchedulerService.get());
    }
    VNotificationManagerService.systemReady(context);
    addService(ServiceManagerNative.NOTIFICATION, VNotificationManagerService.get());
    VAppManagerService.get().scanApps();
    VAccountManagerService.systemReady();
    addService(ServiceManagerNative.ACCOUNT, VAccountManagerService.get());
    addService(ServiceManagerNative.VS, VirtualStorageService.get());
    addService(ServiceManagerNative.DEVICE, VDeviceManagerService.get());
    addService(ServiceManagerNative.VIRTUAL_LOC, VirtualLocationService.get());
    return true;
}
 
开发者ID:coding-dream,项目名称:TPlayer,代码行数:29,代码来源:BinderProvider.java

示例12: performOptimize

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
public boolean performOptimize(String packageName, int userId) {
    if (!isPrivilegeApp(packageName)) {
        return false;
    }
    VActivityManagerService.get().sendBroadcastAsUser(
            specifyApp(new Intent(Intent.ACTION_BOOT_COMPLETED, null), packageName, userId)
            , new VUserHandle(userId));
    return true;
}
 
开发者ID:coding-dream,项目名称:TPlayer,代码行数:10,代码来源:PrivilegeAppOptimizer.java

示例13: sendAccountsChangedBroadcast

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void sendAccountsChangedBroadcast(int userId) {
	Intent intent = new Intent(AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION);
	VActivityManagerService.get().sendBroadcastAsUser(intent, new VUserHandle(userId));
	broadcastCheckInNowIfNeed(userId);
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:6,代码来源:VAccountManagerService.java

示例14: sendUserInfoChangedBroadcast

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void sendUserInfoChangedBroadcast(int userId) {
    Intent changedIntent = new Intent(Constants.ACTION_USER_INFO_CHANGED);
    changedIntent.putExtra(Constants.EXTRA_USER_HANDLE, userId);
    changedIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
    VActivityManagerService.get().sendBroadcastAsUser(changedIntent, new VUserHandle(userId));
}
 
开发者ID:7763sea,项目名称:VirtualHook,代码行数:7,代码来源:VUserManagerService.java

示例15: sendAccountsChangedBroadcast

import com.lody.virtual.server.am.VActivityManagerService; //导入依赖的package包/类
private void sendAccountsChangedBroadcast(int userId) {
    Intent intent = new Intent(AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION);
    VActivityManagerService.get().sendBroadcastAsUser(intent, new VUserHandle(userId));
    broadcastCheckInNowIfNeed(userId);
}
 
开发者ID:coding-dream,项目名称:TPlayer,代码行数:6,代码来源:VAccountManagerService.java


注:本文中的com.lody.virtual.server.am.VActivityManagerService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。