Searched refs:onCreate (Results 1 - 25 of 660) sorted by path

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorActivity.java55 protected void onCreate(Bundle icicle) { method in class:AccountAuthenticatorActivity
56 super.onCreate(icicle);
H A DCantAddAccountActivity.java33 public void onCreate(Bundle savedInstanceState) { method in class:CantAddAccountActivity
34 super.onCreate(savedInstanceState);
H A DChooseAccountActivity.java53 public void onCreate(Bundle savedInstanceState) { method in class:ChooseAccountActivity
54 super.onCreate(savedInstanceState);
H A DChooseAccountTypeActivity.java52 public void onCreate(Bundle savedInstanceState) { method in class:ChooseAccountTypeActivity
53 super.onCreate(savedInstanceState);
56 Log.v(TAG, "ChooseAccountTypeActivity.onCreate(savedInstanceState="
H A DChooseTypeAndAccountActivity.java134 public void onCreate(Bundle savedInstanceState) { method in class:ChooseTypeAndAccountActivity
136 Log.v(TAG, "ChooseTypeAndAccountActivity.onCreate(savedInstanceState="
202 super.onCreate(savedInstanceState);
227 super.onCreate(savedInstanceState);
403 super.onCreate(savedInstanceState);
H A DGrantCredentialsPermissionActivity.java50 protected void onCreate(Bundle savedInstanceState) { method in class:GrantCredentialsPermissionActivity
51 super.onCreate(savedInstanceState);
/frameworks/base/core/java/android/app/
H A DActivity.java127 * <li> {@link #onCreate} is where you initialize your activity. Most
222 * to {@link android.app.Activity#onCreate} through to a single final call
224 * of "global" state in onCreate(), and release all remaining resources in
226 * to download data from the network, it may create that thread in onCreate()
254 * activities will implement {@link android.app.Activity#onCreate}
263 * protected void onCreate(Bundle savedInstanceState);
293 * <tr><th colspan="3" align="left" border="0">{@link android.app.Activity#onCreate onCreate()}</th>
382 * {@link #onCreate} if the activity needs to be re-created.
577 * protected void onCreate(Bundl
900 protected void onCreate(@Nullable Bundle savedInstanceState) { method in class:Activity
945 public void onCreate(@Nullable Bundle savedInstanceState, method in class:Activity
[all...]
H A DActivityGroup.java51 protected void onCreate(Bundle savedInstanceState) { method in class:ActivityGroup
52 super.onCreate(savedInstanceState);
H A DActivityThread.java2374 " did not call through to super.onCreate()");
2802 agent.onCreate();
2877 service.onCreate();
4698 mInstrumentation.onCreate(data.instrumentationArgs);
4702 "Exception thrown in onCreate() of "
5280 mInitialApplication.onCreate();
H A DAlertDialog.java62 * desired mode after calling {@link #onCreate}.
421 protected void onCreate(Bundle savedInstanceState) { method in class:AlertDialog
422 super.onCreate(savedInstanceState);
H A DAliasActivity.java53 protected void onCreate(Bundle savedInstanceState) { method in class:AliasActivity
54 super.onCreate(savedInstanceState);
H A DApplication.java91 * If you override this method, be sure to call super.onCreate().
94 public void onCreate() { method in class:Application
H A DDialog.java267 * Rather, override {@link #onCreate(Bundle)}.
391 // users to call through to super in onCreate
394 onCreate(savedInstanceState);
400 * Similar to {@link Activity#onCreate}, you should initialize your dialog
407 protected void onCreate(Bundle savedInstanceState) { method in class:Dialog
H A DDialogFragment.java385 public void onCreate(Bundle savedInstanceState) { method in class:DialogFragment
386 super.onCreate(savedInstanceState);
432 * <p>This method will be called after {@link #onCreate(Bundle)} and
H A DFragment.java215 * <li> {@link #onCreate} called to do initial creation of the fragment.
219 * completed its own {@link Activity#onCreate Activity.onCreate()}.
968 * <li> {@link #onCreate(Bundle)} will not be called since the fragment
1373 * {@link #onCreate(Bundle)} will be called after this.
1413 public void onCreate(@Nullable Bundle savedInstanceState) { method in class:Fragment
1421 * {@link #onCreate(Bundle)} and {@link #onActivityCreated(Bundle)}.
1533 * in the Bundle given to {@link #onCreate(Bundle)},
2198 onCreate(savedInstanceState);
2201 + " did not call through to super.onCreate()");
[all...]
H A DInstrumentation.java116 public void onCreate(Bundle arguments) { method in class:Instrumentation
368 * call to its {@link Activity#onCreate}. Generally this means it has gone
1002 * Perform calling of the application's {@link Application#onCreate}
1005 * <p>Note: This method will be called immediately after {@link #onCreate(Bundle)}.
1006 * Often instrumentation tests start their test thread in onCreate(); you
1013 app.onCreate();
1099 * Perform calling of an activity's {@link Activity#onCreate}
1103 * @param icicle The previously frozen state (or null) to pass through to onCreate().
1112 * Perform calling of an activity's {@link Activity#onCreate}
H A DIntentService.java102 public void onCreate() { method in class:IntentService
107 super.onCreate();
H A DLauncherActivity.java339 protected void onCreate(Bundle icicle) { method in class:LauncherActivity
340 super.onCreate(icicle);
H A DNativeActivity.java128 protected void onCreate(Bundle savedInstanceState) { method in class:NativeActivity
184 super.onCreate(savedInstanceState);
H A DProgressDialog.java121 protected void onCreate(Bundle savedInstanceState) { method in class:ProgressDialog
198 super.onCreate(savedInstanceState);
H A DSearchDialog.java142 protected void onCreate(Bundle savedInstanceState) { method in class:SearchDialog
143 super.onCreate(savedInstanceState);
H A DService.java103 * and call its {@link #onCreate} and any other appropriate callbacks on the
118 * retrieve the service (creating it and calling its {@link #onCreate} method
139 * service if it is not already running (calling {@link #onCreate} while
199 * {@link #onCreate onCreate()}, {@link #onStartCommand onStartCommand()},
315 public void onCreate() { method in class:Service
718 // set by the thread after the constructor and before onCreate(Bundle icicle) is called.
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java86 * that process, and the agent's {@link #onCreate()} method is invoked. This prepares the
174 public void onCreate() { method in class:BackupAgent
/frameworks/base/core/java/android/content/
H A DContentProvider.java73 * <li>{@link #onCreate} which is called to initialize the provider</li>
83 * Other methods (such as {@link #onCreate}) are only called from the application
132 * {@link #onCreate}, not the constructor.
686 * {@link #onCreate} has been called -- this will return {@code null} in the
863 public abstract boolean onCreate(); method in class:ContentProvider
1748 ContentProvider.this.onCreate();
H A DSearchRecentSuggestionsProvider.java137 public void onCreate(SQLiteDatabase db) { method in class:SearchRecentSuggestionsProvider.DatabaseHelper
156 onCreate(db);
303 public boolean onCreate() { method in class:SearchRecentSuggestionsProvider

Completed in 220 milliseconds

1234567891011>>