HomeSort by relevance Sort by last modified time
    Searched refs:activities (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /packages/apps/Contacts/src/com/android/contacts/activities/
TransactionSafeActivity.java 17 package com.android.contacts.activities;
GroupBrowserActivity.java 17 package com.android.contacts.activities;
NonPhoneActivity.java 17 package com.android.contacts.activities;
  /frameworks/base/core/java/android/server/search/
Searchables.java 40 * This class maintains the information about all searchable activities.
57 // Contains all installed activities that handle the global search
70 * @param context Context to use for looking up activities etc.
79 * The activities fall into three cases, based on meta-data found in
114 // References must point directly to searchable activities.
171 * activities that are searchable, by iterating the entire set of
174 * Also clears the hash of all activities -> searches which will
263 // of activities that can handle the GLOBAL_SEARCH intent.
266 List<ResolveInfo> activities = local
269 if (activities != null && !activities.isEmpty())
305 List<ResolveInfo> activities = local
378 List<ResolveInfo> activities = local
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/activities/
InviteContactActivity.java 16 package com.example.android.samplesync.activities;
ViewGroupActivity.java 16 package com.example.android.samplesync.activities;
ViewStreamItemActivity.java 16 package com.example.android.samplesync.activities;
ViewStreamItemPhotoActivity.java 16 package com.example.android.samplesync.activities;
  /packages/apps/Contacts/tests/src/com/android/contacts/
ContactDetailTest.java 19 import com.android.contacts.activities.ContactDetailActivity;
  /packages/apps/Tag/src/com/android/apps/tag/record/
RecordUtils.java 68 List<ResolveInfo> activities = pm.queryIntentActivities(intent, flags); local
69 int numActivities = activities.size();
70 if (numActivities == 0 || (numActivities == 1 && !activities.get(0).activityInfo.enabled)) {
75 return buildActivityView(activity, activities.get(0), pm, inflater, parent, listener,
85 for (ResolveInfo resolveInfo : activities) {
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 91 public ActivityInfo[] activities; field in class:PackageInfo
249 dest.writeTypedArray(activities, parcelableFlags);
287 activities = source.createTypedArray(ActivityInfo.CREATOR);
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferenceActivity.java 20 import com.android.contacts.activities.PeopleActivity;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 207 Activity[] activities = manifestData.getActivities(); local
208 if (activities != null && activities.length > 0) {
209 activity = activities[0];
  /development/apps/Development/src/com/android/development/
PackageSummary.java 166 LinearLayout activities = (LinearLayout)findViewById(R.id.activities); local
172 if (info.activities != null) {
173 final int N = info.activities.length;
175 ActivityInfo ai = info.activities[i];
184 activities.addView(view, lp);
188 activities.setVisibility(View.GONE);
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java 51 * activities that can handle the given intent and order found activities
54 * choice history the file can be omitted, thus the activities will be ordered
62 * activities and they may be inconsistent with the functionality of some of the clients.
111 * Defines a sorter that is responsible for sorting the activities
117 * Sorts the <code>activities</code> in descending order of relevance
121 * @param activities Activities to be sorted.
126 public void sort(Intent intent, List<ActivityResolveInfo> activities,
237 * List of activities that can handle the current intent
437 List<ActivityResolveInfo> activities = mActivities; local
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 62 * contain the MIME type in its type field. This allows activities to register
63 * {@link IntentFilter}s targeting specific content on tags. Activities should register the
68 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
78 * Intent to start an activity when a tag is discovered and activities are registered for the
126 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
127 * this intent will not be started. If any activities respond to this intent
136 * <p>This intent will not be started when a tag is discovered if any activities respond to
755 * messages completely (for all activities), you can include a
764 * <p>The API allows for multiple activities to be specified at a time,
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 66 int nonStoppingAdj; // Adjustment not counting any stopping activities
77 boolean foregroundActivities; // Running any activities that are foreground?
114 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
260 if (activities.size() > 0) {
261 pw.print(prefix); pw.println("Activities:");
262 for (int i=0; i<activities.size(); i++) {
263 pw.print(prefix); pw.print(" - "); pw.println(activities.get(i));
330 * This method returns true if any of the activities within the process record are interesting
334 final int size = activities.size();
336 ActivityRecord r = activities.get(i)
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
BaseBindingActivity.java 17 package com.android.tools.sdkcontroller.activities;
43 * Returns the binder. Activities can use that to query the controller service.
  /frameworks/base/core/java/android/preference/
PreferenceManager.java 38 * from activities or XML.
186 * activities.
195 * {@link Activity Activities} that match the given {@link Intent}. An
202 * @param queryIntent The intent to match activities.
209 final List<ResolveInfo> activities = queryIntentActivities(queryIntent); local
212 for (int i = activities.size() - 1; i >= 0; i--) {
213 final ActivityInfo activityInfo = activities.get(i).activityInfo;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 254 Activity[] activities = manifestData.getActivities(); local
256 // first we check that there are, in fact, activities.
257 if (activities.length == 0) {
258 // if the activities list is null, then the manifest is empty
281 for (Activity a : activities) {
  /packages/apps/Contacts/src/com/android/contacts/
ContactsActivity.java 20 import com.android.contacts.activities.TransactionSafeActivity;
32 * A common superclass for Contacts activities that handles application-wide services.
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 30 import com.android.contacts.activities.PhotoSelectionActivity;
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 19 import com.android.contacts.activities.PeopleActivity;
  /packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java 52 * Dispatch of NFC events to start activities
160 List<ResolveInfo> activities = packageManager.queryIntentActivities(intent, 0); local
161 if (activities.size() > 0) {
169 List<ResolveInfo> activities = packageManager.queryIntentActivities(intentToStart, 0); local
170 if (activities.size() > 0) {
179 /** Returns false if no activities were found to dispatch to */
  /sdk/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 335 Set<String> activities = mLaunchMap.keySet(); local
338 for (String activity : activities) {
343 // loop on the activities and write their values.
350 for (String activity : activities) {
370 for (String activity : activities) {

Completed in 1155 milliseconds

1 2 3 4