Searched refs:onCreate (Results 201 - 224 of 224) sorted by relevance

123456789

/frameworks/base/core/java/android/app/
H A DDialog.java304 // users to call through to super in onCreate
307 onCreate(savedInstanceState);
313 * Similar to {@link Activity#onCreate}, you should initialized your dialog
320 protected void onCreate(Bundle savedInstanceState) { method in class:Dialog
H A DLauncherActivity.java332 protected void onCreate(Bundle icicle) { method in class:LauncherActivity
333 super.onCreate(icicle);
H A DInstrumentation.java109 public void onCreate(Bundle arguments) { method in class:Instrumentation
354 * call to its {@link Activity#onCreate}. Generally this means it has gone
963 * Perform calling of the application's {@link Application#onCreate}
969 app.onCreate();
1025 * Perform calling of an activity's {@link Activity#onCreate}
1030 * onCreate().
1047 activity.onCreate(icicle);
H A DSearchDialog.java171 protected void onCreate(Bundle savedInstanceState) { method in class:SearchDialog
172 super.onCreate(savedInstanceState);
H A DActivityThread.java1615 " did not call through to super.onCreate()");
1871 agent.onCreate();
1945 service.onCreate();
3246 mInstrumentation.onCreate(data.instrumentationArgs);
3250 "Exception thrown in onCreate() of "
3617 app.onCreate();
H A DActivity.java88 * <li> {@link #onCreate} is where you initialize your activity. Most
165 * to {@link android.app.Activity#onCreate} through to a single final call
167 * of "global" state in onCreate(), and release all remaining resources in
169 * to download data from the network, it may create that thread in onCreate()
197 * activities will implement {@link android.app.Activity#onCreate}
206 * protected void onCreate(Bundle savedInstanceState);
236 * <tr><th colspan="3" align="left" border="0">{@link android.app.Activity#onCreate onCreate()}</th>
325 * {@link #onCreate} if the activity needs to be re-created.
512 * protected void onCreate(Bundl
801 protected void onCreate(Bundle savedInstanceState) { method in class:Activity
[all...]
/frameworks/base/core/java/android/content/
H A DContentProvider.java60 * <li>{@link #onCreate} which is called to initialize the provider</li>
70 * Other methods (such as {@link #onCreate}) are only called from the application
102 * {@link #onCreate}, not the constructor.
356 * {@link #onCreate} has been called -- this will return null in the
454 public abstract boolean onCreate(); method in class:ContentProvider
798 ContentProvider.this.onCreate();
/frameworks/base/core/tests/coretests/src/android/util/
H A DListScenario.java301 protected void onCreate(Bundle icicle) { method in class:ListScenario
302 super.onCreate(icicle);
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java404 public void onCreate(Bundle icicle) method in class:SoundPoolTest
406 super.onCreate(icicle);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java95 public void onCreate() { method in class:SettingsBackupAgent
97 super.onCreate();
H A DDatabaseHelper.java57 * Mostly just has a bit {@link #onCreate} to initialize the database.
104 public void onCreate(SQLiteDatabase db) { method in class:DatabaseHelper
753 onCreate(db);
H A DSettingsProvider.java255 public boolean onCreate() { method in class:SettingsProvider
266 // during onCreate(), but since ensureAndroidIdIsSet has
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java355 public void onCreate(SurfaceHolder surfaceHolder) { method in class:WallpaperService.Engine
647 if (DEBUG) Log.v(TAG, "onCreate(): " + this);
648 onCreate(mSurfaceHolder);
951 public void onCreate() { method in class:WallpaperService
952 super.onCreate();
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java184 public boolean onCreate() { method in class:MockContentProvider
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestActivity.java194 protected void onCreate(Bundle savedInstanceState) { method in class:ConnectivityManagerTestActivity
195 super.onCreate(savedInstanceState);
196 log("onCreate, inst=" + Integer.toHexString(hashCode()));
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java169 protected void onCreate(Bundle icicle) { method in class:LaunchpadActivity
170 super.onCreate(icicle);
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java292 public void onCreate(Bundle arguments) { method in class:InstrumentationTestRunner
293 super.onCreate(arguments);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellActivity.java117 protected void onCreate(Bundle icicle) { method in class:TestShellActivity
118 super.onCreate(icicle);
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java525 public boolean onCreate() { method in class:ContentProviderOperationTest.TestContentProvider
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java219 public boolean onCreate() { method in class:IccProvider
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java540 * you will get. This must be set before {@link #onCreate}, so you
546 throw new IllegalStateException("Must be called before onCreate()");
551 @Override public void onCreate() { method in class:InputMethodService
553 super.onCreate();
/frameworks/base/packages/TtsService/src/android/tts/
H A DTtsService.java159 public void onCreate() { method in class:TtsService
160 super.onCreate();
161 Log.v("TtsService", "TtsService.onCreate()");
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1589 public void onCreate(SQLiteDatabase db) { method in class:AccountManagerService.DatabaseHelper
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarService.java195 public void onCreate() { method in class:StatusBarService

Completed in 554 milliseconds

123456789