Searched refs:onDestroy (Results 1 - 25 of 123) sorted by path

12345

/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java238 protected void onDestroy() { method in class:ChooseTypeAndAccountActivity
240 Log.v(TAG, "ChooseTypeAndAccountActivity.onDestroy()");
242 super.onDestroy();
/frameworks/base/core/java/android/app/
H A DActivity.java223 * to {@link android.app.Activity#onDestroy}. An activity will do all setup
225 * onDestroy(). For example, if it has a thread running in the background
227 * and then stop the thread in onDestroy().
275 * protected void onDestroy();
353 * <code>onDestroy()</code> if this activity is going away.</td>
356 * <code>onDestroy()</code></td>
359 * <tr><th colspan="3" align="left" border="0">{@link android.app.Activity#onDestroy onDestroy()}</th>
418 * {@link #onStop}, and {@link #onDestroy} as appropriate. If the activity
419 * had been in the foreground or visible to the user, once {@link #onDestroy} i
1648 protected void onDestroy() { method in class:Activity
[all...]
H A DActivityGroup.java86 protected void onDestroy() { method in class:ActivityGroup
87 super.onDestroy();
H A DActivityThread.java2838 agent.onDestroy();
2840 Slog.w(TAG, "Exception thrown in onDestroy by backup agent of " + data.appInfo);
3040 s.onDestroy();
3822 " did not call through to super.onDestroy()");
H A DFragment.java240 * <li> {@link #onDestroy} called to do final cleanup of the fragment's state.
966 * <li> {@link #onDestroy()} will not be called (but {@link #onDetach()} still
1540 * at any time before {@link #onDestroy()}</em>. There are many situations
1584 * after {@link #onStop()} and before {@link #onDestroy()}. It is called
1597 public void onDestroy() { method in class:Fragment
1599 //Log.v("foo", "onDestroy: mCheckedForLoaderManager=" + mCheckedForLoaderManager
1642 * is called after {@link #onDestroy()}.
2433 onDestroy();
2436 + " did not call through to super.onDestroy()");
H A DInstrumentation.java226 public void onDestroy() { method in class:Instrumentation
H A DIntentService.java136 public void onDestroy() { method in class:IntentService
H A DListActivity.java223 * @see Activity#onDestroy()
226 protected void onDestroy() { method in class:ListActivity
228 super.onDestroy();
H A DNativeActivity.java192 protected void onDestroy() { method in class:NativeActivity
203 super.onDestroy();
H A DService.java154 * of these situations hold, the service's {@link #onDestroy} method is called
156 * unregistering receivers) should be complete upon returning from onDestroy().
200 * or {@link #onDestroy onDestroy()} methods, then the hosting process will
469 public void onDestroy() { method in class:Service
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java183 public void onDestroy() { method in class:BackupAgent
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareService.java54 public void onDestroy() { method in class:GeofenceHardwareService
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java752 @Override public void onDestroy() { method in class:InputMethodService
753 super.onDestroy();
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java969 protected void onDestroy() { method in class:PreferenceActivity
972 super.onDestroy();
H A DPreferenceFragment.java224 public void onDestroy() { method in class:PreferenceFragment
225 super.onDestroy();
/frameworks/base/core/java/android/print/
H A DIPrintDocumentAdapterObserver.aidl25 void onDestroy();
H A DPrintManager.java540 observer.onDestroy();
682 // this process gets killed so we cover the case of onDestroy not
693 observer.onDestroy();
/frameworks/base/core/java/android/printservice/
H A DPrinterDiscoverySession.java42 * discovered by this session you will receive a call to {@link #onDestroy()} at
132 * destroyed, that is after the {@link #onDestroy()} callback, will be ignored.
155 * destroyed, that is after the {@link #onDestroy()} callback, will be ignored.
219 * destroyed, that is after the {@link #onDestroy()} callback, will be ignored.
428 * destroyed, that is after the {@link #onDestroy()} callback, will be ignored.
452 public abstract void onDestroy(); method in class:PrinterDiscoverySession
459 * @see #onDestroy()
525 onDestroy();
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java77 * <p>In addition, onCreate and onDestroy (from the Service interface) will also be called, but
898 public void onDestroy() { method in class:DreamService
899 if (mDebug) Slog.v(TAG, "onDestroy()");
905 super.onDestroy();
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java1018 onDestroy();
1288 public void onDestroy() { method in class:VoiceInteractionSession
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java430 public void onDestroy() { method in class:WallpaperService.Engine
1026 if (DEBUG) Log.v(TAG, "onDestroy(): " + this);
1027 onDestroy();
1252 public void onDestroy() { method in class:WallpaperService
1253 super.onDestroy();
/frameworks/base/core/java/android/speech/
H A DRecognitionService.java219 public void onDestroy() { method in class:RecognitionService
220 if (DBG) Log.d(TAG, "onDestroy");
223 super.onDestroy();
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java147 public void onDestroy() { method in class:TextToSpeechService
148 if (DBG) Log.d(TAG, "onDestroy()");
157 super.onDestroy();
/frameworks/base/core/java/android/webkit/
H A DWebViewFragment.java84 public void onDestroy() { method in class:WebViewFragment
89 super.onDestroy();
/frameworks/base/core/java/android/widget/
H A DRemoteViewsService.java75 public void onDestroy(); method in interface:RemoteViewsService.RemoteViewsFactory
214 public void onDestroy(Intent intent) { method in class:RemoteViewsService.RemoteViewsFactoryAdapter
220 factory.onDestroy();

Completed in 4818 milliseconds

12345