當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。