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

/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/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 DContextImpl.java929 public void startActivity(Intent intent) { method in class:ContextImpl
931 startActivity(intent, null);
941 public void startActivity(Intent intent, Bundle options) { method in class:ContextImpl
945 "Calling startActivity() from outside of an Activity "
H A DFragment.java1022 * Call {@link Activity#startActivity(Intent)} on the fragment's
1027 public void startActivity(Intent intent) { method in class:Fragment
1028 startActivity(intent, null);
1032 * Call {@link Activity#startActivity(Intent, Bundle)} on the fragment's
1037 * See {@link android.content.Context#startActivity(Intent, Bundle)
1038 * Context.startActivity(Intent, Bundle)} for more details.
1040 public void startActivity(Intent intent, Bundle options) { method in class:Fragment
H A DActivityManagerNative.java131 int result = startActivity(app, intent, resolvedType,
1857 public int startActivity(IApplicationThread caller, Intent intent, method in class:ActivityManagerProxy
H A DActivity.java111 * <p>To be of use with {@link android.content.Context#startActivity Context.startActivity()}, all
417 * <p>The {@link android.app.Activity#startActivity}
470 * startActivity(new Intent(Intent.ACTION_VIEW, data));
1117 * flag when calling {@link #startActivity}. In either case, when the
2096 startActivity(intent);
3328 * @see #startActivity
3339 * {@link #startActivity} (the activity is not launched as a sub-activity).
3361 * See {@link android.content.Context#startActivity(Intent, Bundle)
3362 * Context.startActivity(Inten
3533 public void startActivity(Intent intent) { method in class:Activity
3560 public void startActivity(Intent intent, Bundle options) { method in class:Activity
[all...]
H A DIActivityManager.java54 public int startActivity(IApplicationThread caller, method in interface:IActivityManager
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodsPanel.java206 private void startActivity(Intent intent) { method in class:InputMethodsPanel
207 mContext.startActivity(intent);
215 startActivity(intent);
254 startActivity(intent);
/frameworks/base/core/java/android/content/
H A DContextWrapper.java283 public void startActivity(Intent intent) { method in class:ContextWrapper
284 mBase.startActivity(intent);
294 public void startActivity(Intent intent, Bundle options) { method in class:ContextWrapper
295 mBase.startActivity(intent, options);
H A DContext.java899 * Same as {@link #startActivity(Intent, Bundle)} with no options
906 * @see {@link #startActivity(Intent, Bundle)}
909 public abstract void startActivity(Intent intent); method in class:Context
912 * Version of {@link #startActivity(Intent)} that allows you to specify the
947 * @see #startActivity(Intent)
950 public abstract void startActivity(Intent intent, Bundle options); method in class:Context
953 * Version of {@link #startActivity(Intent, Bundle)} that allows you to specify the
985 * {@link #startActivity(Intent)} for the first Intent in the array,
986 * that activity during its creation calling {@link #startActivity(Intent)}
999 * See {@link android.content.Context#startActivity(Inten
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java253 public void startActivity(Intent intent) { method in class:MockContext
258 public void startActivity(Intent intent, Bundle options) { method in class:MockContext
259 startActivity(intent);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java1284 public void startActivity(Intent arg0) { method in class:BridgeContext
1289 public void startActivity(Intent arg0, Bundle arg1) { method in class:BridgeContext
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java831 * Call {@link Activity#startActivity(Intent)} on the fragment's
834 public void startActivity(Intent intent) { method in class:Fragment
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java2455 public final int startActivity(IApplicationThread caller, method in class:ActivityManagerService
2467 enforceNotIsolatedCaller("startActivity");
2469 false, true, "startActivity", null);
2647 false, true, "startActivity", null);
7443 enforceNotIsolatedCaller("startActivity");

Completed in 6393 milliseconds