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

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/activities/
DialtactsViewPager.java 17 package com.android.contacts.activities;
GroupBrowserActivity.java 17 package com.android.contacts.activities;
CallLogActivity.java 17 package com.android.contacts.activities;
JoinContactActivity.java 17 package com.android.contacts.activities;
NonPhoneActivity.java 17 package com.android.contacts.activities;
GroupDetailActivity.java 17 package com.android.contacts.activities;
GroupEditorActivity.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;
  /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
225 dest.writeTypedArray(activities, parcelableFlags);
262 activities = source.createTypedArray(ActivityInfo.CREATOR);
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 53 * contain the MIME type in its type field. This allows activities to register
54 * {@link IntentFilter}s targeting specific content on tags. Activities should register the
59 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
66 * Intent to start an activity when a tag is discovered and activities are registered for the
116 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
117 * this intent will not be started. If any activities respond to this intent
126 * <p>This intent will not be started when a tag is discovered if any activities respond to
506 * Set the {@link NdefMessage} to push over NFC during the specified activities.
509 * only made available for NDEF push when one of the specified activities
518 * specified activities
    [all...]
  /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 206 Activity[] activities = manifestData.getActivities(); local
207 if (activities != null && activities.length > 0) {
208 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/services/java/com/android/server/am/
ProcessRecord.java 69 boolean foregroundActivities; // Running any activities that are foreground?
106 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
244 if (activities.size() > 0) {
245 pw.print(prefix); pw.print("activities="); pw.println(activities);
289 * This method returns true if any of the activities within the process record are interesting
293 final int size = activities.size();
295 ActivityRecord r = activities.get(i);
304 int i = activities.size();
307 activities.get(i).stopFreezingScreenLocked(true)
    [all...]
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java 54 * 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,
240 * List of activities that can handle the current intent
436 List<ActivityResolveInfo> activities = mActivites; local
    [all...]
  /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 253 Activity[] activities = manifestData.getActivities(); local
255 // first we check that there are, in fact, activities.
256 if (activities.length == 0) {
257 // if the activities list is null, then the manifest is empty
280 for (Activity a : activities) {
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 19 import com.android.contacts.activities.PeopleActivity;
  /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) {
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageInfoTest.java 108 checkInfoArray(expected.activities, actual.activities);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
VoiceRecognition.java 79 List<ResolveInfo> activities = pm.queryIntentActivities( local
81 if (activities.size() != 0) {

Completed in 904 milliseconds

1 2 3