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

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java91 public ActivityInfo[] activities; field in class:PackageInfo
225 dest.writeTypedArray(activities, parcelableFlags);
262 activities = source.createTypedArray(ActivityInfo.CREATOR);
H A DPackageParser.java238 int N = p.activities.size();
241 pi.activities = new ActivityInfo[N];
245 if (p.activities.get(i).info.enabled) num++;
247 pi.activities = new ActivityInfo[num];
250 final Activity activity = p.activities.get(i);
253 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags);
1751 owner.activities.add(a);
1787 owner.activities.add(a);
2145 final int NA = owner.activities
2935 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java61 * contain the MIME type in its type field. This allows activities to register
67 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
74 * Intent to start an activity when a tag is discovered and activities are registered for the
124 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
125 * this intent will not be started. If any activities respond to this intent
134 * <p>This intent will not be started when a tag is discovered if any activities respond to
542 * Set the {@link NdefMessage} to push over NFC during the specified activities.
545 * only made available for NDEF push when one of the specified activities
554 * specified activities.
563 * @param activities optiona
566 setNdefPushMessage(NdefMessage message, Activity activity, Activity ... activities) argument
605 setNdefPushMessageCallback(CreateNdefMessageCallback callback, Activity activity, Activity ... activities) argument
634 setOnNdefPushCompleteCallback(OnNdefPushCompleteCallback callback, Activity activity, Activity ... activities) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java54 * activities that can handle the given intent and order found activities
57 * choice history the file can be omitted, thus the activities will be ordered
65 * activities and they may be inconsistent with the functionality of some of the clients.
114 * Defines a sorter that is responsible for sorting the activities
120 * Sorts the <code>activities</code> in descending order of relevance
124 * @param activities Activities to be sorted.
129 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
240 * List of activities that can handle the current intent.
270 * The sorter for ordering activities base
928 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java70 boolean foregroundActivities; // Running any activities that are foreground?
107 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
246 if (activities.size() > 0) {
247 pw.print(prefix); pw.print("activities="); pw.println(activities);
291 * This method returns true if any of the activities within the process record are interesting
295 final int size = activities.size();
297 ActivityRecord r = activities.get(i);
306 int i = activities.size();
309 activities
[all...]

Completed in 129 milliseconds