美文网首页
IActivityManager源码

IActivityManager源码

作者: 2远 | 来源:发表于2018-10-30 19:49 被阅读0次

    这个接口还是比较重要的,直接贴源码,方便查阅,可以看到涵盖了四大组件的方法,
    比如startActivity,startService,registerReceiver,getContentProvider

    /*
     * Copyright (C) 2006 The Android Open Source Project
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package android;
    
    import android.app.ActivityManager;
    import android.app.ActivityManager.RunningTaskInfo;
    import android.app.ActivityManager.RunningServiceInfo;
    import android.app.ActivityManager.StackInfo;
    import android.app.ActivityOptions;
    import android.app.ApplicationErrorReport;
    import android.app.IApplicationThread;
    import android.app.IServiceConnection;
    import android.app.Notification;
    import android.app.PendingIntent;
    import android.content.ComponentName;
    import android.content.ContentProviderNative;
    import android.content.IContentProvider;
    import android.content.IIntentReceiver;
    import android.content.IIntentSender;
    import android.content.Intent;
    import android.content.IntentFilter;
    import android.content.IntentSender;
    import android.content.UriPermission;
    import android.content.pm.ApplicationInfo;
    import android.content.pm.ConfigurationInfo;
    import android.content.pm.IPackageDataObserver;
    import android.content.pm.ParceledListSlice;
    import android.content.pm.ProviderInfo;
    import android.content.pm.UserInfo;
    import android.content.res.Configuration;
    import android.graphics.Bitmap;
    import android.graphics.Point;
    import android.graphics.Rect;
    import android.net.Uri;
    import android.os.Bundle;
    import android.os.Debug;
    import android.os.IBinder;
    import android.os.IInterface;
    import android.os.Parcel;
    import android.os.ParcelFileDescriptor;
    import android.os.Parcelable;
    import android.os.PersistableBundle;
    import android.os.RemoteException;
    import android.os.StrictMode;
    import android.service.voice.IVoiceInteractionSession;
    import com.android.internal.app.IVoiceInteractor;
    
    import java.util.List;
    
    /**
     * System private API for talking with the activity manager service.  This
     * provides calls from the application back to the activity manager.
     *
     * {@hide}
     */
    public interface IActivityManager extends IInterface {
        public int startActivity(IApplicationThread caller, String callingPackage, Intent intent,
                                 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
                                 ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
        public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent,
                                       String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
                                       ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
        public int startActivityAsCaller(IApplicationThread caller, String callingPackage,
                                         Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
                                         int flags, ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
        public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
                                               Intent intent, String resolvedType, IBinder resultTo, String resultWho,
                                               int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options,
                                               int userId) throws RemoteException;
        public int startActivityWithConfig(IApplicationThread caller, String callingPackage,
                                           Intent intent, String resolvedType, IBinder resultTo, String resultWho,
                                           int requestCode, int startFlags, Configuration newConfig,
                                           Bundle options, int userId) throws RemoteException;
        public int startActivityIntentSender(IApplicationThread caller,
                                             IntentSender intent, Intent fillInIntent, String resolvedType,
                                             IBinder resultTo, String resultWho, int requestCode,
                                             int flagsMask, int flagsValues, Bundle options) throws RemoteException;
        public int startVoiceActivity(String callingPackage, int callingPid, int callingUid,
                                      Intent intent, String resolvedType, IVoiceInteractionSession session,
                                      IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options,
                                      int userId) throws RemoteException;
        public boolean startNextMatchingActivity(IBinder callingActivity,
                                                 Intent intent, Bundle options) throws RemoteException;
        public int startActivityFromRecents(int taskId, Bundle options) throws RemoteException;
        public boolean finishActivity(IBinder token, int code, Intent data, boolean finishTask)
                throws RemoteException;
        public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
        public boolean finishActivityAffinity(IBinder token) throws RemoteException;
        public void finishVoiceTask(IVoiceInteractionSession session) throws RemoteException;
        public boolean releaseActivityInstance(IBinder token) throws RemoteException;
        public void releaseSomeActivities(IApplicationThread app) throws RemoteException;
        public boolean willActivityBeVisible(IBinder token) throws RemoteException;
        public Intent registerReceiver(IApplicationThread caller, String callerPackage,
                                       IIntentReceiver receiver, IntentFilter filter,
                                       String requiredPermission, int userId) throws RemoteException;
        public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
        public int broadcastIntent(IApplicationThread caller, Intent intent,
                                   String resolvedType, IIntentReceiver resultTo, int resultCode,
                                   String resultData, Bundle map, String requiredPermission,
                                   int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException;
        public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
        public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
        public void attachApplication(IApplicationThread app) throws RemoteException;
        public void activityResumed(IBinder token) throws RemoteException;
        public void activityIdle(IBinder token, Configuration config,
                                 boolean stopProfiling) throws RemoteException;
        public void activityPaused(IBinder token) throws RemoteException;
        public void activityStopped(IBinder token, Bundle state,
                                    PersistableBundle persistentState, CharSequence description) throws RemoteException;
        public void activitySlept(IBinder token) throws RemoteException;
        public void activityDestroyed(IBinder token) throws RemoteException;
        public String getCallingPackage(IBinder token) throws RemoteException;
        public ComponentName getCallingActivity(IBinder token) throws RemoteException;
        public List<IAppTask> getAppTasks(String callingPackage) throws RemoteException;
        public int addAppTask(IBinder activityToken, Intent intent,
                              ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException;
        public Point getAppTaskThumbnailSize() throws RemoteException;
        public List<RunningTaskInfo> getTasks(int maxNum, int flags) throws RemoteException;
        public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
                                                                   int flags, int userId) throws RemoteException;
        public ActivityManager.TaskThumbnail getTaskThumbnail(int taskId) throws RemoteException;
        public List<RunningServiceInfo> getServices(int maxNum, int flags) throws RemoteException;
        public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
                throws RemoteException;
        public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
        public void moveTaskToBack(int task) throws RemoteException;
        public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
        public void moveTaskBackwards(int task) throws RemoteException;
        public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
        public void resizeStack(int stackId, Rect bounds) throws RemoteException;
        public List<StackInfo> getAllStackInfos() throws RemoteException;
        public StackInfo getStackInfo(int stackId) throws RemoteException;
        public boolean isInHomeStack(int taskId) throws RemoteException;
        public void setFocusedStack(int stackId) throws RemoteException;
        public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
        public ContentProviderHolder getContentProvider(IApplicationThread caller,
                                                        String name, int userId, boolean stable) throws RemoteException;
        public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
                throws RemoteException;
        public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException;
        public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
        public void publishContentProviders(IApplicationThread caller,
                                            List<ContentProviderHolder> providers) throws RemoteException;
        public boolean refContentProvider(IBinder connection, int stableDelta, int unstableDelta)
                throws RemoteException;
        public void unstableProviderDied(IBinder connection) throws RemoteException;
        public void appNotRespondingViaProvider(IBinder connection) throws RemoteException;
        public PendingIntent getRunningServiceControlPanel(ComponentName service)
                throws RemoteException;
        public ComponentName startService(IApplicationThread caller, Intent service,
                                          String resolvedType, int userId) throws RemoteException;
        public int stopService(IApplicationThread caller, Intent service,
                               String resolvedType, int userId) throws RemoteException;
        public boolean stopServiceToken(ComponentName className, IBinder token,
                                        int startId) throws RemoteException;
        public void setServiceForeground(ComponentName className, IBinder token,
                                         int id, Notification notification, boolean keepNotification) throws RemoteException;
        public int bindService(IApplicationThread caller, IBinder token,
                               Intent service, String resolvedType,
                               IServiceConnection connection, int flags, int userId) throws RemoteException;
        public boolean unbindService(IServiceConnection connection) throws RemoteException;
        public void publishService(IBinder token,
                                   Intent intent, IBinder service) throws RemoteException;
        public void unbindFinished(IBinder token, Intent service,
                                   boolean doRebind) throws RemoteException;
        /* oneway */
        public void serviceDoneExecuting(IBinder token, int type, int startId,
                                         int res) throws RemoteException;
        public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
    
        public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
                throws RemoteException;
        public void clearPendingBackup() throws RemoteException;
        public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
        public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
        public void killApplicationProcess(String processName, int uid) throws RemoteException;
    
        public boolean startInstrumentation(ComponentName className, String profileFile,
                                            int flags, Bundle arguments, IInstrumentationWatcher watcher,
                                            IUiAutomationConnection connection, int userId,
                                            String abiOverride) throws RemoteException;
        public void finishInstrumentation(IApplicationThread target,
                                          int resultCode, Bundle results) throws RemoteException;
    
        public Configuration getConfiguration() throws RemoteException;
        public void updateConfiguration(Configuration values) throws RemoteException;
        public void setRequestedOrientation(IBinder token,
                                            int requestedOrientation) throws RemoteException;
        public int getRequestedOrientation(IBinder token) throws RemoteException;
    
        public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
        public String getPackageForToken(IBinder token) throws RemoteException;
    
        public IIntentSender getIntentSender(int type,
                                             String packageName, IBinder token, String resultWho,
                                             int requestCode, Intent[] intents, String[] resolvedTypes,
                                             int flags, Bundle options, int userId) throws RemoteException;
        public void cancelIntentSender(IIntentSender sender) throws RemoteException;
        public boolean clearApplicationUserData(final String packageName,
                                                final IPackageDataObserver observer, int userId) throws RemoteException;
        public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
        public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
    
        public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
                                      boolean requireFull, String name, String callerPackage) throws RemoteException;
    
        public void setProcessLimit(int max) throws RemoteException;
        public int getProcessLimit() throws RemoteException;
    
        public void setProcessForeground(IBinder token, int pid,
                                         boolean isForeground) throws RemoteException;
    
        public int checkPermission(String permission, int pid, int uid)
                throws RemoteException;
    
        public int checkUriPermission(Uri uri, int pid, int uid, int mode, int userId)
                throws RemoteException;
        public void grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri,
                                       int mode, int userId) throws RemoteException;
        public void revokeUriPermission(IApplicationThread caller, Uri uri, int mode, int userId)
                throws RemoteException;
        public void takePersistableUriPermission(Uri uri, int modeFlags, int userId)
                throws RemoteException;
        public void releasePersistableUriPermission(Uri uri, int modeFlags, int userId)
                throws RemoteException;
        public ParceledListSlice<UriPermission> getPersistedUriPermissions(
                String packageName, boolean incoming) throws RemoteException;
    
        public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
                throws RemoteException;
        
        public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
        
        public void killBackgroundProcesses(final String packageName, int userId)
                throws RemoteException;
        public void killAllBackgroundProcesses() throws RemoteException;
        public void forceStopPackage(final String packageName, int userId) throws RemoteException;
        
        // Note: probably don't want to allow applications access to these.
        public void setLockScreenShown(boolean shown) throws RemoteException;
    
        public void unhandledBack() throws RemoteException;
        public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
        public void setDebugApp(
                String packageName, boolean waitForDebugger, boolean persistent)
            throws RemoteException;
        public void setAlwaysFinish(boolean enabled) throws RemoteException;
        public void setActivityController(IActivityController watcher)
            throws RemoteException;
    
        public void enterSafeMode() throws RemoteException;
        
        public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg)
                throws RemoteException;
    
        public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
        public boolean killProcessesBelowForeground(String reason) throws RemoteException;
    
        // Special low-level communication with activity manager.
        public void handleApplicationCrash(IBinder app,
                                           ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
        public boolean handleApplicationWtf(IBinder app, String tag, boolean system,
                                            ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
    
        // A StrictMode violation to be handled.  The violationMask is a
        // subset of the original StrictMode policy bitmask, with only the
        // bit violated and penalty bits to be executed by the
        // ActivityManagerService remaining set.
        public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
                                                         StrictMode.ViolationInfo crashInfo) throws RemoteException;
    
        /*
         * This will deliver the specified signal to all the persistent processes. Currently only
         * SIGUSR1 is delivered. All others are ignored.
         */
        public void signalPersistentProcesses(int signal) throws RemoteException;
        // Retrieve running application processes in the system
        public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
                throws RemoteException;
        // Retrieve info of applications installed on external media that are currently
        // running.
        public List<ApplicationInfo> getRunningExternalApplications()
                throws RemoteException;
        // Get memory information about the calling process.
        public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
                throws RemoteException;
        // Get device configuration
        public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
    
        // Turn on/off profiling in a particular process.
        public boolean profileControl(String process, int userId, boolean start,
                                      ProfilerInfo profilerInfo, int profileType) throws RemoteException;
    
        public boolean shutdown(int timeout) throws RemoteException;
    
        public void stopAppSwitches() throws RemoteException;
        public void resumeAppSwitches() throws RemoteException;
    
        public void addPackageDependency(String packageName) throws RemoteException;
    
        public void killApplicationWithAppId(String pkg, int appid, String reason)
                throws RemoteException;
        
        public void closeSystemDialogs(String reason) throws RemoteException;
        
        public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
                throws RemoteException;
    
        public void overridePendingTransition(IBinder token, String packageName,
                                              int enterAnim, int exitAnim) throws RemoteException;
    
        public boolean isUserAMonkey() throws RemoteException;
    
        public void setUserIsMonkey(boolean monkey) throws RemoteException;
    
        public void finishHeavyWeightApp() throws RemoteException;
    
        public boolean convertFromTranslucent(IBinder token) throws RemoteException;
        public boolean convertToTranslucent(IBinder token, ActivityOptions options) throws RemoteException;
        public void notifyActivityDrawn(IBinder token) throws RemoteException;
        public ActivityOptions getActivityOptions(IBinder token) throws RemoteException;
    
        public void bootAnimationComplete() throws RemoteException;
    
        public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
        public boolean isImmersive(IBinder token) throws RemoteException;
        public boolean isTopActivityImmersive() throws RemoteException;
        public boolean isTopOfTask(IBinder token) throws RemoteException;
    
        public void crashApplication(int uid, int initialPid, String packageName,
                                     String message) throws RemoteException;
    
        public String getProviderMimeType(Uri uri, int userId) throws RemoteException;
    
        public IBinder newUriPermissionOwner(String name) throws RemoteException;
        public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
                                                Uri uri, int mode, int sourceUserId, int targetUserId) throws RemoteException;
        public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
                                                 int mode, int userId) throws RemoteException;
    
        public int checkGrantUriPermission(int callingUid, String targetPkg, Uri uri,
                                           int modeFlags, int userId) throws RemoteException;
    
        // Cause the specified process to dump the specified heap.
        public boolean dumpHeap(String process, int userId, boolean managed, String path,
                                ParcelFileDescriptor fd) throws RemoteException;
    
        public int startActivities(IApplicationThread caller, String callingPackage,
                                   Intent[] intents, String[] resolvedTypes, IBinder resultTo,
                                   Bundle options, int userId) throws RemoteException;
    
        public int getFrontActivityScreenCompatMode() throws RemoteException;
        public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
        public int getPackageScreenCompatMode(String packageName) throws RemoteException;
        public void setPackageScreenCompatMode(String packageName, int mode)
                throws RemoteException;
        public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
        public void setPackageAskScreenCompat(String packageName, boolean ask)
                throws RemoteException;
    
        // Multi-user APIs
        public boolean switchUser(int userid) throws RemoteException;
        public boolean startUserInBackground(int userid) throws RemoteException;
        public int stopUser(int userid, IStopUserCallback callback) throws RemoteException;
        public UserInfo getCurrentUser() throws RemoteException;
        public boolean isUserRunning(int userid, boolean orStopping) throws RemoteException;
        public int[] getRunningUserIds() throws RemoteException;
    
        public boolean removeTask(int taskId, int flags) throws RemoteException;
    
        public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
        public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
    
        public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
    
        public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException;
    
        public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException;
    
        public String getTagForIntentSender(IIntentSender sender, String prefix) throws RemoteException;
    
        public void updatePersistentConfiguration(Configuration values) throws RemoteException;
    
        public long[] getProcessPss(int[] pids) throws RemoteException;
    
        public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
    
        public void keyguardWaitingForActivityDrawn() throws RemoteException;
    
        public boolean shouldUpRecreateTask(IBinder token, String destAffinity)
                throws RemoteException;
    
        public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
                throws RemoteException;
    
        // These are not public because you need to be very careful in how you
        // manage your activity to make sure it is always the uid you expect.
        public int getLaunchedFromUid(IBinder activityToken) throws RemoteException;
        public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException;
    
        public void registerUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
        public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
    
        public void requestBugReport() throws RemoteException;
    
        public long inputDispatchingTimedOut(int pid, boolean aboveSystem, String reason)
                throws RemoteException;
    
        public Bundle getAssistContextExtras(int requestType) throws RemoteException;
    
        public void reportAssistContextExtras(IBinder token, Bundle extras) throws RemoteException;
    
        public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle)
                throws RemoteException;
    
        public void killUid(int uid, String reason) throws RemoteException;
    
        public void hang(IBinder who, boolean allowRestart) throws RemoteException;
    
        public void reportActivityFullyDrawn(IBinder token) throws RemoteException;
    
        public void restart() throws RemoteException;
    
        public void performIdleMaintenance() throws RemoteException;
    
        public IActivityContainer createActivityContainer(IBinder parentActivityToken,
                                                          IActivityContainerCallback callback) throws RemoteException;
    
        public void deleteActivityContainer(IActivityContainer container) throws RemoteException;
    
        public IActivityContainer getEnclosingActivityContainer(IBinder activityToken)
                throws RemoteException;
    
        public IBinder getHomeActivityToken() throws RemoteException;
    
        public void startLockTaskModeOnCurrent() throws RemoteException;
    
        public void startLockTaskMode(int taskId) throws RemoteException;
    
        public void startLockTaskMode(IBinder token) throws RemoteException;
    
        public void stopLockTaskMode() throws RemoteException;
    
        public void stopLockTaskModeOnCurrent() throws RemoteException;
    
        public boolean isInLockTaskMode() throws RemoteException;
    
        public void setTaskDescription(IBinder token, ActivityManager.TaskDescription values)
                throws RemoteException;
        public Bitmap getTaskDescriptionIcon(String filename) throws RemoteException;
    
        public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException;
        public boolean isBackgroundVisibleBehind(IBinder token) throws RemoteException;
        public void backgroundResourcesReleased(IBinder token) throws RemoteException;
    
        public void notifyLaunchTaskBehindComplete(IBinder token) throws RemoteException;
        public void notifyEnterAnimationComplete(IBinder token) throws RemoteException;
    
        /*
         * Private non-Binder interfaces
         */
        /* package */ boolean testIsSystemReady();
    
        /** Information you can retrieve about a particular application. */
        public static class ContentProviderHolder implements Parcelable {
            public final ProviderInfo info;
            public IContentProvider provider;
            public IBinder connection;
            public boolean noReleaseNeeded;
    
            public ContentProviderHolder(ProviderInfo _info) {
                info = _info;
            }
    
            @Override
            public int describeContents() {
                return 0;
            }
    
            @Override
            public void writeToParcel(Parcel dest, int flags) {
                info.writeToParcel(dest, 0);
                if (provider != null) {
                    dest.writeStrongBinder(provider.asBinder());
                } else {
                    dest.writeStrongBinder(null);
                }
                dest.writeStrongBinder(connection);
                dest.writeInt(noReleaseNeeded ? 1:0);
            }
    
            public static final Creator<ContentProviderHolder> CREATOR
                    = new Creator<ContentProviderHolder>() {
                @Override
                public ContentProviderHolder createFromParcel(Parcel source) {
                    return new ContentProviderHolder(source);
                }
    
                @Override
                public ContentProviderHolder[] newArray(int size) {
                    return new ContentProviderHolder[size];
                }
            };
    
            private ContentProviderHolder(Parcel source) {
                info = ProviderInfo.CREATOR.createFromParcel(source);
                provider = ContentProviderNative.asInterface(
                    source.readStrongBinder());
                connection = source.readStrongBinder();
                noReleaseNeeded = source.readInt() != 0;
            }
        }
    
        /** Information returned after waiting for an activity start. */
        public static class WaitResult implements Parcelable {
            public int result;
            public boolean timeout;
            public ComponentName who;
            public long thisTime;
            public long totalTime;
    
            public WaitResult() {
            }
    
            @Override
            public int describeContents() {
                return 0;
            }
    
            @Override
            public void writeToParcel(Parcel dest, int flags) {
                dest.writeInt(result);
                dest.writeInt(timeout ? 1 : 0);
                ComponentName.writeToParcel(who, dest);
                dest.writeLong(thisTime);
                dest.writeLong(totalTime);
            }
    
            public static final Creator<WaitResult> CREATOR
                    = new Creator<WaitResult>() {
                @Override
                public WaitResult createFromParcel(Parcel source) {
                    return new WaitResult(source);
                }
    
                @Override
                public WaitResult[] newArray(int size) {
                    return new WaitResult[size];
                }
            };
    
            private WaitResult(Parcel source) {
                result = source.readInt();
                timeout = source.readInt() != 0;
                who = ComponentName.readFromParcel(source);
                thisTime = source.readLong();
                totalTime = source.readLong();
            }
        }
    
        String descriptor = "android.app.IActivityManager";
    
        // Please keep these transaction codes the same -- they are also
        // sent by C++ code.
        int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
        int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
        int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
        int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
    
        // Remaining non-native transaction codes.
        int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
        int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
        int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
        int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
        int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
        int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
        int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
        int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
        int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
        int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
        int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
        int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
        int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
        int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
        int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
        int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
        int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
    
        int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
        int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
        int REF_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
        int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
        int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
        int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
        int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
        int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
        int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
        int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
        int ACTIVITY_RESUMED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
        int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
        int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
        int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
        int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
        int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
        int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
        int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
        int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
        int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
        int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
        int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
        int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
        int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
        int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
        int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
        int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
        int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
        int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
        int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
        int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
        int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
        int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
        int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
        int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
        int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
        int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
        int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
        int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
        int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
        int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
        int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
        int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
        int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
        int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
        int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
        int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
        int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
        int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
        int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
        int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
        int GET_TASK_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
        int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
        int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
        int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
        int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
        int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
        int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
        int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
        int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
        int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
        int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
        int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
        int HANDLE_INCOMING_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
        int ADD_PACKAGE_DEPENDENCY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
        int KILL_APPLICATION_WITH_APPID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
        int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
        int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
        int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
        int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
        int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
        int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
        int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
        int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
        int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
        int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
        int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
        int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
        int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
        int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
        int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
        int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
        int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
        int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
        int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
        int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
        int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
        int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
        int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
        int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
        int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
        int IS_USER_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
        int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
        int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
        int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
        int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
        int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
        int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
        int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
        int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
        int ___AVAILABLE_1___ = IBinder.FIRST_CALL_TRANSACTION+130;
        int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
        int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
        int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
        int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
        int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
        int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
        int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
        int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
        int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
        int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
        int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
        int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
        int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
        int SHOULD_UP_RECREATE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
        int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
        int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
        int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
        int GET_LAUNCHED_FROM_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+149;
        int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+150;
        int IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+151;
        int START_ACTIVITY_AS_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+152;
        int STOP_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+153;
        int REGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+154;
        int UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+155;
        int GET_RUNNING_USER_IDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+156;
        int REQUEST_BUG_REPORT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+157;
        int INPUT_DISPATCHING_TIMED_OUT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+158;
        int CLEAR_PENDING_BACKUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+159;
        int GET_INTENT_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+160;
        int GET_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+161;
        int REPORT_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+162;
        int GET_LAUNCHED_FROM_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+163;
        int KILL_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+164;
        int SET_USER_IS_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+165;
        int HANG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+166;
        int CREATE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+167;
        int MOVE_TASK_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+168;
        int RESIZE_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+169;
        int GET_ALL_STACK_INFOS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+170;
        int SET_FOCUSED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+171;
        int GET_STACK_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+172;
        int CONVERT_FROM_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+173;
        int CONVERT_TO_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+174;
        int NOTIFY_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+175;
        int REPORT_ACTIVITY_FULLY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+176;
        int RESTART_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+177;
        int PERFORM_IDLE_MAINTENANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+178;
        int TAKE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+179;
        int RELEASE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+180;
        int GET_PERSISTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+181;
        int APP_NOT_RESPONDING_VIA_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+182;
        int GET_HOME_ACTIVITY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+183;
        int GET_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+184;
        int DELETE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+185;
    
    
        // Start of L transactions
        int GET_TAG_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+210;
        int START_USER_IN_BACKGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+211;
        int IS_IN_HOME_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+212;
        int START_LOCK_TASK_BY_TASK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+213;
        int START_LOCK_TASK_BY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+214;
        int STOP_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+215;
        int IS_IN_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+216;
        int SET_TASK_DESCRIPTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+217;
        int START_VOICE_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+218;
        int GET_ACTIVITY_OPTIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+219;
        int GET_APP_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+220;
        int START_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+221;
        int STOP_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+222;
        int FINISH_VOICE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+223;
        int IS_TOP_OF_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+224;
        int REQUEST_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+225;
        int IS_BACKGROUND_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+226;
        int BACKGROUND_RESOURCES_RELEASED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+227;
        int NOTIFY_LAUNCH_TASK_BEHIND_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+228;
        int START_ACTIVITY_FROM_RECENTS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 229;
        int NOTIFY_ENTER_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+230;
        int KEYGUARD_WAITING_FOR_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+231;
        int START_ACTIVITY_AS_CALLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+232;
        int ADD_APP_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+233;
        int GET_APP_TASK_THUMBNAIL_SIZE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+234;
        int RELEASE_ACTIVITY_INSTANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+235;
        int RELEASE_SOME_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+236;
        int BOOT_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+237;
        int GET_TASK_DESCRIPTION_ICON_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+238;
        int LAUNCH_ASSIST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+239;
    }
    
    

    相关文章

      网友评论

          本文标题:IActivityManager源码

          本文链接:https://www.haomeiwen.com/subject/falntqtx.html