Searched refs:activity (Results 226 - 250 of 362) sorted by relevance

1234567891011>>

/packages/apps/Settings/src/com/android/settings/
H A DProxySelector.java144 final Activity activity = getActivity();
170 final Intent intent = activity.getIntent();
179 activity.setTitle(title);
H A DDreamSettings.java73 public void onAttach(Activity activity) { argument
74 logd("onAttach(%s)", activity.getClass().getSimpleName());
75 super.onAttach(activity);
76 mContext = activity;
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWriteWifiConfigToNfcDialog.java136 Activity activity = getOwnerActivity();
137 NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(activity);
139 nfcAdapter.enableReaderMode(activity, new NfcAdapter.ReaderCallback() {
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperPreview.java61 static void showPreview(Activity activity, int code, Intent intent, WallpaperInfo info) { argument
66 Intent preview = new Intent(activity, LiveWallpaperPreview.class);
70 activity.startActivityForResult(preview, code);
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksPage.java180 final Activity activity = getActivity();
192 activity.sendBroadcast(createShortcutIntent(getActivity(), c));
202 Controller.sharePage(activity,
214 Toast.makeText(activity, R.string.homepage_set, Toast.LENGTH_LONG).show();
224 Bookmarks.removeFromBookmarks(activity, activity.getContentResolver(), url, name);
279 final Activity activity = getActivity();
280 MenuInflater inflater = activity.getMenuInflater();
290 BookmarkItem header = new BookmarkItem(activity);
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaFragment.java111 public void onAttach(Activity activity) { argument
112 super.onAttach(activity);
113 mTimeZone = Utils.getTimeZone(activity, mTZUpdater);
115 mActivity = activity;
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsActivity.java28 import com.android.contacts.common.activity.TransactionSafeActivity;
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailFragment.java131 public void onAttach(Activity activity) { argument
132 super.onAttach(activity);
133 mContext = activity;
139 mAdapter = new GroupMemberTileAdapter(activity, mContactTileListener, columnCount);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DCheckSettingsProgressDialogFragment.java17 package com.android.email.activity.setup;
/packages/apps/Email/src/com/android/email/service/
H A DEasTestAuthenticatorService.java30 import com.android.email.activity.setup.AccountSetupFinal;
65 // activity. In this case, we add an intent that will be used to gather the
/packages/apps/Email/tests/src/com/android/email/activity/
H A DIntentUtilitiesTests.java17 package com.android.email.activity;
H A DUiUtilitiesTests.java17 package com.android.email.activity;
/packages/apps/Email/tests/src/com/android/email/activity/setup/
H A DAccountSetupIncomingTests.java17 package com.android.email.activity.setup;
37 * runtest -c com.android.email.activity.setup.AccountSetupIncomingTests email
182 * Get the activity (which causes it to be started, using our intent) and get the UI fields
H A DEmailPreferenceActivityTests.java17 package com.android.email.activity.setup;
39 * To execute: runtest -c com.android.email.activity.setup.AccountSettingsTests email
125 * Get the activity (which causes it to be started, using our intent) and get the UI fields
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DGalleryActionBar.java188 public GalleryActionBar(AbstractGalleryActivity activity) { argument
189 mActionBar = activity.getActionBar();
190 mContext = activity.getAndroidContext();
191 mActivity = activity;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSlidingWindow.java91 public AlbumSlidingWindow(AbstractGalleryActivity activity, argument
98 mHandler = new SynchronizedHandler(activity.getGLRoot()) {
106 mThreadPool = new JobLimiter(activity.getThreadPool(), JOB_LIMIT);
107 mTileUploader = new TiledTexture.Uploader(activity.getGLRoot());
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
H A DPicasaSource.java145 public static Dialog getVersionCheckDialog(Activity activity){ argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DConfig.java284 public Uri getHelpUrl(String activity) { argument
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DInputMethodAndLanguageSettings.java117 final Activity activity = getActivity();
119 mInputMethodSettingValues = InputMethodSettingValuesWrapper.getInstance(activity);
127 if (activity.getAssets().getLocales().length == 1) {
150 final Intent startingIntent = activity.getIntent();
165 mIm = (InputManager)activity.getSystemService(Context.INPUT_SERVICE);
174 intent.setClass(activity, SubSettings.class);
183 mSettingsObserver = new SettingsObserver(mHandler, activity);
206 final Activity activity = getActivity();
207 final TreeSet<String> localeSet = UserDictionaryList.getUserDictionaryLocalesSet(activity);
/packages/apps/Settings/src/com/android/settings/notification/
H A DNotificationStation.java114 public void onAttach(Activity activity) { argument
115 logd("onAttach(%s)", activity.getClass().getSimpleName());
116 super.onAttach(activity);
117 mContext = activity;
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DUtils.java526 * @param helpTopic Information about the activity the user was in
544 * @param helpTopic Information about the activity the user was in
562 // start the help activity with the full help URL
628 public static void sendFeedback(Activity activity, Account account, boolean reportingProblem) { argument
629 if (activity != null && account != null) {
630 sendFeedback(activity, account.sendFeedbackIntentUri, reportingProblem);
634 public static void sendFeedback(Activity activity, Uri feedbackIntentUri, argument
636 if (activity != null && !isEmpty(feedbackIntentUri)) {
640 final Bitmap screenBitmap = getReducedSizeBitmap(activity);
645 openUrl(activity, feedbackIntentUr
649 getReducedSizeBitmap(Activity activity) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DPieController.java52 public PieController(CameraActivity activity, PieRenderer pie) { argument
53 mActivity = activity;
H A DVideoController.java48 public VideoController(CameraActivity activity, VideoModule module, PieRenderer pie) { argument
49 super(activity, pie);
/packages/apps/Camera2/src/com/android/camera/
H A DCaptureModule.java307 public void init(CameraActivity activity, boolean isSecureCamera, boolean isCaptureIntent) { argument
309 mIsResumeFromLockScreen = isResumeFromLockscreen(activity);
310 mMainHandler = new Handler(activity.getMainLooper());
320 mUI = new CaptureModuleUI(activity, this, mAppController.getModuleLayoutRoot(),
329 String action = activity.getIntent().getAction();
332 View cancelButton = activity.findViewById(R.id.shutter_cancel_button);
1350 private static boolean isResumeFromLockscreen(Activity activity) { argument
1351 String action = activity.getIntent().getAction();
H A DCaptureModuleUI.java126 public CaptureModuleUI(CameraActivity activity, CaptureModule module, View parent, argument
128 mActivity = activity;

Completed in 2010 milliseconds

1234567891011>>