Searched defs:activities (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java112 public ActivityInfo[] activities; field in class:PackageInfo
307 dest.writeTypedArray(activities, parcelableFlags);
356 activities = source.createTypedArray(ActivityInfo.CREATOR);
H A DPackageParser.java459 int N = p.activities.size();
462 pi.activities = new ActivityInfo[N];
466 if (p.activities.get(i).info.enabled) num++;
468 pi.activities = new ActivityInfo[num];
471 final Activity activity = p.activities.get(i);
474 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags,
2648 owner.activities.add(a);
2684 owner.activities.add(a);
2801 owner.activities
4222 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java66 * contain the MIME type in its type field. This allows activities to register
72 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
82 * Intent to start an activity when a tag is discovered and activities are registered for the
130 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
131 * this intent will not be started. If any activities respond to this intent
140 * <p>This intent will not be started when a tag is discovered if any activities respond to
916 * messages completely (for all activities), you can include a
925 * <p>The API allows for multiple activities to be specified at a time,
955 * @param activities optional additional activities, howeve
959 setNdefPushMessage(NdefMessage message, Activity activity, Activity ... activities) argument
1061 setNdefPushMessageCallback(CreateNdefMessageCallback callback, Activity activity, Activity ... activities) argument
1135 setOnNdefPushCompleteCallback(OnNdefPushCompleteCallback callback, Activity activity, Activity ... activities) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java53 * activities that can handle the given intent and order found activities
56 * choice history the file can be omitted, thus the activities will be ordered
64 * activities and they may be inconsistent with the functionality of some of the clients.
113 * Defines a sorter that is responsible for sorting the activities
119 * Sorts the <code>activities</code> in descending order of relevance
123 * @param activities Activities to be sorted.
128 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
239 * List of activities that can handle the current intent.
269 * The sorter for ordering activities base
944 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java50 * activities that can handle the given intent and order found activities
53 * choice history the file can be omitted, thus the activities will be ordered
61 * activities and they may be inconsistent with the functionality of some of the clients.
110 * Defines a sorter that is responsible for sorting the activities
116 * Sorts the <code>activities</code> in descending order of relevance
120 * @param activities Activities to be sorted.
125 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
236 * List of activities that can handle the current intent.
261 * The sorter for ordering activities base
924 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java94 boolean hasClientActivities; // Are there any client services with activities?
97 boolean foregroundActivities; // Running any activities that are foreground?
98 boolean repForegroundActivities; // Last reported foreground activities.
139 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
341 if (activities.size() > 0) {
343 for (int i=0; i<activities.size(); i++) {
344 pw.print(prefix); pw.print(" - "); pw.println(activities.get(i));
460 * This method returns true if any of the activities within the process record are interesting
464 final int size = activities.size();
466 ActivityRecord r = activities
[all...]
H A DTaskRecord.java108 boolean hasBeenVisible; // Set if any activities in the task have been visible to the user.
114 int numFullscreen; // Number of fullscreen activities.
120 /** List of all activities in the task arranged in history order */
217 String _lastDescription, ArrayList<ActivityRecord> activities, long _firstActiveTime,
246 mActivities = activities;
519 // All activities of this task are finishing. As we ought to have a frontOfTask
563 // Otherwise make all added activities match this one.
597 * Completely remove all activities associated with an existing
622 * Completely remove all activities associated with an existing task.
635 * activities o
213 TaskRecord(ActivityManagerService service, int _taskId, Intent _intent, Intent _affinityIntent, String _affinity, String _rootAffinity, ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset, boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId, int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities, long _firstActiveTime, long _lastActiveTime, long lastTimeMoved, boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription, int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage) argument
[all...]

Completed in 109 milliseconds