Searched defs:startActivity (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DActivityStarter.java27 public void startActivity(Intent intent, boolean dismissShade); method in interface:ActivityStarter
H A DPhoneStatusBar.java2108 public void startActivity(Intent intent, boolean dismissShade) { method in class:PhoneStatusBar
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityCompatJB.java25 public static void startActivity(Context context, Intent intent, Bundle options) { method in class:ActivityCompatJB
26 context.startActivity(intent, options);
/frameworks/base/test-runner/src/android/test/
H A DActivityUnitTestCase.java59 * <li>{@link android.app.Activity#startActivity(Intent)}</li>
104 * {@link android.content.Context#startActivity Context.startActivity()}, providing the
114 * @param intent The Intent as if supplied to {@link android.content.Context#startActivity}.
122 protected T startActivity(Intent intent, Bundle savedInstanceState, method in class:ActivityUnitTestCase
179 * {@link #startActivity}. If your test does not call this method,
188 * here. You must call this function before calling {@link #startActivity}. If you wish to
208 * {@link android.app.Activity#startActivity(Intent)} or
305 * <li>{@link android.app.Activity#startActivity(Intent)}</li>
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityCompat.java96 public static void startActivity(Activity activity, Intent intent, @Nullable Bundle options) { method in class:ActivityCompat
98 ActivityCompatJB.startActivity(activity, intent, options);
100 activity.startActivity(intent);
H A DFragment.java889 * Call {@link Activity#startActivity(Intent)} on the fragment's
892 public void startActivity(Intent intent) { method in class:Fragment
/frameworks/base/core/java/android/app/
H A DLocalActivityManager.java62 static final int RESTORED = 0; // State restored, but no startActivity().
63 static final int INITIALIZING = 1; // Ready to launch (after startActivity()).
112 // startActivity() has not yet been called, so nothing to do.
218 * track of the activity, so that if you later call startActivity() again
260 public Window startActivity(String id, Intent intent) { method in class:LocalActivityManager
404 * @see #startActivity
417 * @see #startActivity
427 * @see #startActivity
H A DActivityView.java166 public void startActivity(Intent intent) { method in class:ActivityView
168 throw new IllegalStateException("Attempt to call startActivity after release");
170 if (DEBUG) Log.v(TAG, "startActivity(): intent=" + intent + " " +
173 mActivityContainer.startActivity(intent);
181 public void startActivity(IntentSender intentSender) { method in class:ActivityView
183 throw new IllegalStateException("Attempt to call startActivity after release");
197 public void startActivity(PendingIntent pendingIntent) { method in class:ActivityView
199 throw new IllegalStateException("Attempt to call startActivity after release");
250 mActivityContainer.startActivity(mQueuedIntent);
377 int startActivity(Inten method in class:ActivityView.ActivityContainerWrapper
[all...]
H A DFragment.java1048 * Call {@link Activity#startActivity(Intent)} from the fragment's
1053 public void startActivity(Intent intent) { method in class:Fragment
1054 startActivity(intent, null);
1058 * Call {@link Activity#startActivity(Intent, Bundle)} from the fragment's
1063 * See {@link android.content.Context#startActivity(Intent, Bundle)
1064 * Context.startActivity(Intent, Bundle)} for more details.
1066 public void startActivity(Intent intent, Bundle options) { method in class:Fragment
H A DActivityManager.java89 * Result for IActivityManager.startActivity: trying to start an activity under voice
96 * Result for IActivityManager.startActivity: an error where the
103 * Result for IActivityManager.startActivity: an error where the
110 * Result for IActivityManager.startActivity: an error where the
117 * Result for IActivityManager.startActivity: an error where the
125 * Result for IActivityManager.startActivity: an error where the
132 * Result for IActivityManager.startActivity: an error where the
139 * Result for IActivityManaqer.startActivity: the activity was started
146 * Result for IActivityManaqer.startActivity: the caller asked that the Intent not
153 * Result for IActivityManaqer.startActivity
2768 public void startActivity(Context context, Intent intent, Bundle options) { method in class:ActivityManager.AppTask
[all...]
H A DContextImpl.java1217 public void startActivity(Intent intent) { method in class:ContextImpl
1219 startActivity(intent, null);
1229 public void startActivity(Intent intent, Bundle options) { method in class:ContextImpl
1233 "Calling startActivity() from outside of an Activity "
H A DActivity.java129 * <p>To be of use with {@link android.content.Context#startActivity Context.startActivity()}, all
435 * <p>The {@link android.app.Activity#startActivity}
488 * startActivity(new Intent(Intent.ACTION_VIEW, data));
1267 * flag when calling {@link #startActivity}. In either case, when the
2404 startActivity(intent);
3694 * @see #startActivity
3705 * {@link #startActivity} (the activity is not launched as a sub-activity).
3727 * See {@link android.content.Context#startActivity(Intent, Bundle)
3728 * Context.startActivity(Inten
3974 public void startActivity(Intent intent) { method in class:Activity
4001 public void startActivity(Intent intent, @Nullable Bundle options) { method in class:Activity
[all...]
H A DActivityManagerNative.java140 int result = startActivity(app, callingPackage, intent, resolvedType,
2368 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent, method in class:ActivityManagerProxy
H A DIActivityManager.java64 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent, method in interface:IActivityManager
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java602 startActivity(launchIntent, resolveInfo);
620 startActivity(launchIntent, defaultActivity);
658 private void startActivity(Intent intent, ResolveInfo resolveInfo) { method in class:ActivityChooserView.Callbacks
660 mContext.startActivity(intent);
/frameworks/base/core/java/android/content/
H A DContextWrapper.java321 public void startActivity(Intent intent) { method in class:ContextWrapper
322 mBase.startActivity(intent);
332 public void startActivity(Intent intent, Bundle options) { method in class:ContextWrapper
333 mBase.startActivity(intent, options);
H A DContext.java1184 * Same as {@link #startActivity(Intent, Bundle)} with no options
1191 * @see #startActivity(Intent, Bundle)
1194 public abstract void startActivity(Intent intent); method in class:Context
1197 * Version of {@link #startActivity(Intent)} that allows you to specify the
1232 * @see #startActivity(Intent)
1235 public abstract void startActivity(Intent intent, @Nullable Bundle options); method in class:Context
1238 * Version of {@link #startActivity(Intent, Bundle)} that allows you to specify the
1270 * {@link #startActivity(Intent)} for the first Intent in the array,
1271 * that activity during its creation calling {@link #startActivity(Intent)}
1284 * See {@link android.content.Context#startActivity(Inten
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java275 public void startActivity(Intent intent) { method in class:MockContext
280 public void startActivity(Intent intent, Bundle options) { method in class:MockContext
281 startActivity(intent);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java1358 public void startActivity(Intent arg0) { method in class:BridgeContext
1363 public void startActivity(Intent arg0, Bundle arg1) { method in class:BridgeContext
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java1650 if (DEBUG_USER_LEAVING) Slog.v(TAG, "startActivity() => mUserLeaving=" + mUserLeaving);
1739 Slog.w(TAG, "startActivity called from non-Activity context; forcing " +
1766 Slog.w(TAG, "startActivity called from finishing " + sourceRecord
3712 public final int startActivity(Intent intent) { method in class:ActivityStackSupervisor.ActivityContainer
3713 mService.enforceNotIsolatedCaller("ActivityContainer.startActivity");
H A DActivityManagerService.java3540 public final int startActivity(IApplicationThread caller, String callingPackage, method in class:ActivityManagerService
3552 enforceNotIsolatedCaller("startActivity");
3554 false, ALLOW_FULL_ONLY, "startActivity", null);
3873 false, ALLOW_FULL_ONLY, "startActivity", null);
10708 enforceNotIsolatedCaller("startActivity");
19143 public int startActivity(IBinder whoThread, String callingPackage, method in class:ActivityManagerService.AppTaskImpl

Completed in 8352 milliseconds