Searched refs:activity (Results 126 - 134 of 134) sorted by relevance

123456

/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DBroadcastTest.java17 package android.app.activity;
39 "com.android.frameworks.coretests.activity.BROADCAST_REGISTERED";
41 "com.android.frameworks.coretests.activity.BROADCAST_LOCAL";
43 "com.android.frameworks.coretests.activity.BROADCAST_LOCAL_GRANTED";
45 "com.android.frameworks.coretests.activity.BROADCAST_LOCAL_DENIED";
47 "com.android.frameworks.coretests.activity.BROADCAST_REMOTE";
49 "com.android.frameworks.coretests.activity.BROADCAST_REMOTE_GRANTED";
51 "com.android.frameworks.coretests.activity.BROADCAST_REMOTE_DENIED";
53 "com.android.frameworks.coretests.activity.BROADCAST_ALL";
55 "com.android.frameworks.coretests.activity
[all...]
H A DLaunchpadActivity.java17 package android.app.activity;
74 public static final String LAUNCH = "com.android.frameworks.coretests.activity.LAUNCH";
77 "com.android.frameworks.coretests.activity.FORWARD_RESULT";
79 "com.android.frameworks.coretests.activity.RETURNED_RESULT";
82 "comcom.android.frameworks.coretests.activity.BAD_PARCELABLE";
88 "com.android.frameworks.coretests.activity.LIFECYCLE_BASIC";
90 "com.android.frameworks.coretests.activity.LIFECYCLE_SCREEN";
92 "com.android.frameworks.coretests.activity.LIFECYCLE_DIALOG";
94 "com.android.frameworks.coretests.activity.LIFECYCLE_FINISH_CREATE";
96 "com.android.frameworks.coretests.activity
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java311 final Activity activity = p.activities.get(i);
312 if (activity.info.enabled
333 final Activity activity = p.receivers.get(i);
334 if (activity.info.enabled
1865 if (tagName.equals("activity")) {
1902 } else if (tagName.equals("activity-alias")) {
2033 mParseActivityArgs.tag = receiver ? "<receiver>" : "<activity>";
2217 Slog.w(TAG, "Unknown element under <activity>: " + parser.getName()
2227 outError[0] = "Bad element under <activity>: " + parser.getName();
2250 outError[0] = "<activity
3666 public final Activity activity; field in class:PackageParser.ActivityIntentInfo
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java1207 // Verify that all of the preferred activity components actually
1209 // that point remove a previously declared activity component that
1210 // had been set as a preferred activity. We try to clean this up
1211 // the next time we encounter that preferred activity, but it is
1223 Slog.w(TAG, "Removing dangling preferred activity: "
2327 // If there is more than one activity with the same priority,
2335 // If the first activity has a higher priority, or a different
2342 // If we have saved a preference for a preferred activity for
2402 Log.v(TAG, "Got preferred activity:");
2410 // This previously registered preferred activity
8037 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
8062 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java480 final IBinder activity = data.readStrongBinder();
484 dumpActivity(fd.getFileDescriptor(), activity, prefix, args);
H A DFragmentManager.java72 * will be persisted across activity instances.
77 * representation of the entry that will persist across activity
129 * to an activity saving its state. If you try to commit a transaction
163 * activity; if no such fragment is found, then all fragments currently
173 * activity; if no such fragment is found, then all fragments currently
340 * Invalidate the attached activity's options menu as necessary.
383 * Container for fragments associated with an activity.
961 // The fragment's containing activity is
1022 throw new IllegalStateException("No activity");
1786 public void attachActivity(Activity activity) { argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java57 * <p>Your activity must derive from {@link FragmentActivity} to use this.
69 * will be persisted across activity instances.
74 * representation of the entry that will persist across activity
126 * to an activity saving its state. If you try to commit a transaction
160 * activity; if no such fragment is found, then all fragments currently
170 * activity; if no such fragment is found, then all fragments currently
375 * Container for fragments associated with an activity.
1009 // The fragment's containing activity is
1070 throw new IllegalStateException("No activity");
1828 public void attachActivity(FragmentActivity activity) { argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java417 // treat plugging and unplugging the devices as a user activity.
421 // user activity when screen was already on.
553 void init(Context context, LightsService lights, IActivityManager activity, argument
557 mActivityService = activity;
604 // We make sure to start out with the screen on due to user activity.
1365 Slog.d(TAG, "user activity timeout timed out nextState=" + this.nextState);
1607 * This is a temporary hack that allows an activity to "cover up" any
1608 * display glitches that happen during the activity's startup
2518 * Reset the user activity timeout to now + timeout. This overrides whatever else is going
2519 * on with user activity
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java91 // How long we wait until giving up on the last activity telling us it
98 // How long we wait until giving up on the last activity to pause. This
100 // next activity.
103 // How long we wait for the activity to tell us it has stopped before
114 // How long we wait until giving up on an activity telling us it has
122 // How long between activity launches that we consider safe to not warn
123 // the user about an unexpected activity being launched on top.
126 // Set to false to disable the preview that is shown while a new activity
166 * List of activities that are waiting for a new activity
175 * for the next activity t
[all...]

Completed in 264 milliseconds

123456