Searched defs:activity (Results 1 - 25 of 249) sorted by relevance

12345678910

/packages/apps/Email/src/com/android/email/activity/setup/
H A DForwardingIntent.java17 package com.android.email.activity.setup;
26 public ForwardingIntent(Context activity, Class klass) { argument
27 super(activity, klass);
H A DAccountSettingsEditQuickResponsesFragment.java17 package com.android.email.activity.setup;
20 import com.android.email.activity.UiUtilities;
46 * edit, and delete quick responses. Owning activity must:
65 public void onAttach(Activity activity) { argument
66 super.onAttach(activity);
H A DAccountSetupActivity.java17 package com.android.email.activity.setup;
H A DDuplicateAccountDialogFragment.java17 package com.android.email.activity.setup;
H A DPolicyListPreference.java17 package com.android.email.activity.setup;
H A DSpinnerOption.java17 package com.android.email.activity.setup;
/packages/apps/Camera/tests/src/com/android/camera/activity/
H A DCameraActivityTest.java17 package com.android.camera.activity;
49 // Force the activity to finish.
/packages/apps/Email/src/com/android/email/activity/
H A DEventViewer.java17 package com.android.email.activity;
H A DActivityHelper.java17 package com.android.email.activity;
26 import com.android.email.activity.setup.AccountSecurity;
49 * @param activity parent activity
56 public static boolean openUrlInMessage(Activity activity, String url, long senderAccountId) { argument
60 // return MessageCompose.actionCompose(activity, url, senderAccountId);
67 intent.putExtra(Browser.EXTRA_APPLICATION_ID, activity.getPackageName());
70 activity.startActivity(intent);
84 public static void debugSetWindowFlags(Activity activity) { argument
86 // Clear the flag in the activity'
[all...]
H A DComposeActivityEmail.java17 package com.android.email.activity;
H A DInsertQuickResponseDialog.java17 package com.android.email.activity;
65 * the parent activity must implement {@link Callback}.
88 // If target not set, the parent activity MUST implement Callback. Fail-fast if not.
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastOptOutActivity.java27 * Container activity for CMAS opt-in/opt-out alert dialog.
35 Log.d(TAG, "created activity");
40 * Show the opt-out dialog. Uses the CellBroadcastAlertDialog activity unless the device is
45 static void showOptOutDialog(final Activity activity) { argument
46 AlertDialog.Builder builder = new AlertDialog.Builder(activity);
53 activity.finish();
61 Intent intent = new Intent(activity, CellBroadcastSettings.class);
62 activity.startActivity(intent);
63 activity.finish();
/packages/apps/Email/tests/src/com/android/email/activity/
H A DMessageListTests.java17 package com.android.email.activity;
H A DWelcomeTests.java17 package com.android.email.activity;
H A DAccountSelectorAdapterTest.java17 package com.android.email.activity;
H A DIntentUtilitiesTests.java17 package com.android.email.activity;
H A DMessageFileViewTest.java17 package com.android.email.activity;
72 * Set up an EML file, and open it in the activity.
79 final MessageFileView activity = getActivity();
84 MessageFileViewFragment f = activity.getFragment();
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DControllerFactory.java31 public static ActivityController forActivity(MailActivity activity, ViewMode viewMode, argument
33 return isTabletDevice ? new TwoPaneController(activity, viewMode)
34 : new OnePaneController(activity, viewMode);
H A DConversationListHelper.java35 final Context context, final ControllableActivity activity, final Account account) {
39 conversationSyncDisabledTipView.bindAccount(account, activity);
44 conversationsInOutboxTipView.bind(account, activity.getFolderSelector());
59 nestedFolderTeaserView.bind(account, activity.getFolderSelector());
34 makeConversationListSpecialViews( final Context context, final ControllableActivity activity, final Account account) argument
/packages/apps/Calendar/src/com/android/calendar/
H A DQuickResponseSettings.java70 public void onAttach(Activity activity) { argument
71 super.onAttach(activity);
72 ((CalendarSettingsActivity) activity).hideMenuButtons();
78 CalendarSettingsActivity activity = (CalendarSettingsActivity) getActivity();
79 if (!activity.isMultiPane()) {
80 activity.setTitle(R.string.quick_response_settings_title);
/packages/apps/Camera/src/com/android/camera/ui/
H A DRotateTextToast.java35 public RotateTextToast(Activity activity, int textResourceId, int orientation) { argument
36 mLayoutRoot = (ViewGroup) activity.getWindow().getDecorView();
37 LayoutInflater inflater = activity.getLayoutInflater();
/packages/apps/Camera2/src/com/android/camera/ui/
H A DRotateTextToast.java35 public RotateTextToast(Activity activity, int textResourceId, int orientation) { argument
36 mLayoutRoot = (ViewGroup) activity.getWindow().getDecorView();
37 LayoutInflater inflater = activity.getLayoutInflater();
/packages/apps/Contacts/src/com/android/contacts/
H A DNfcHandler.java39 * enabled when the activity is in the foreground and resumed.
50 public static void register(Activity activity, ContactDetailFragment contactFragment) { argument
51 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(activity.getApplicationContext());
55 adapter.setNdefPushMessageCallback(new NfcHandler(contactFragment), activity);
/packages/apps/ContactsCommon/src/com/android/contacts/common/activity/
H A DTransactionSafeActivity.java17 package com.android.contacts.common.activity;
58 * Make sure that the current activity calls into
/packages/apps/Dialer/src/com/android/dialer/list/
H A DAllContactsFragment.java41 public void onAttach(Activity activity) { argument
42 super.onAttach(activity);

Completed in 381 milliseconds

12345678910