/frameworks/base/docs/html/training/basics/activity-lifecycle/ |
D | stopping.jd | 54 android.app.Activity#onStop()} and {@link android.app.Activity#onRestart()}, which allow you to 61 {@link android.app.Activity#onStop()} and {@link android.app.Activity#onRestart()} (or even {@link 68 calls {@link android.app.Activity#onStop onStop()} to stop the activity (1). If the user returns 73 android.app.Activity#onStop onStop()}.</p> 79 <p>When your activity receives a call to the {@link android.app.Activity#onStop()} method, it's no 84 you use {@link android.app.Activity#onStop()} to release resources that might leak memory.</p> 87 {@link android.app.Activity#onStop()}, you should use {@link android.app.Activity#onStop onStop()} 91 <p>For example, here's an implementation of {@link android.app.Activity#onStop onStop()} that 94 <!-- TODO: Find a better example for onStop, because this kind of thing should probably use a 98 protected void onStop() { [all …]
|
/frameworks/base/tests/TtsTests/src/com/android/speech/tts/ |
D | MockableTextToSpeechService.java | 53 protected void onStop() { in onStop() method in MockableTextToSpeechService 54 sDelegate.onStop(); in onStop() 69 void onStop(); in onStop() method
|
/frameworks/base/tests/RenderScriptTests/Balls/src/com/example/android/rs/balls/ |
D | Balls.java | 101 onStop(); in onPause() 105 protected void onStop() { in onStop() method in Balls 107 super.onStop(); in onStop()
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | TestedActivity.java | 53 protected void onStop() in onStop() method in TestedActivity 55 super.onStop(); in onStop()
|
D | SubActivityScreen.java | 157 protected void onStop() { in onStop() method in SubActivityScreen 158 super.onStop(); in onStop()
|
D | TestedScreen.java | 84 protected void onStop() { in onStop() method in TestedScreen 85 super.onStop(); in onStop()
|
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
D | RSTest.java | 77 protected void onStop() { in onStop() method in RSTest 81 super.onStop(); in onStop()
|
/frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/ |
D | RSTest_v14.java | 77 protected void onStop() { in onStop() method in RSTest_v14 81 super.onStop(); in onStop()
|
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
D | VideoDumpActivity.java | 79 protected void onStop() { in onStop() method in VideoDumpActivity 85 super.onStop(); in onStop()
|
/frameworks/base/core/java/android/app/ |
D | ActivityGroup.java | 80 protected void onStop() { in onStop() method in ActivityGroup 81 super.onStop(); in onStop()
|
D | TimePickerDialog.java | 136 protected void onStop() { in onStop() method in TimePickerDialog 138 super.onStop(); in onStop()
|
D | DatePickerDialog.java | 154 protected void onStop() { in onStop() method in DatePickerDialog 156 super.onStop(); in onStop()
|
D | DialogFragment.java | 521 public void onStop() { in onStop() method in DialogFragment 522 super.onStop(); in onStop()
|
/frameworks/base/core/java/android/text/ |
D | LoginFilter.java | 93 onStop(); in filter() 118 public void onStop() { in onStop() method in LoginFilter
|
/frameworks/base/docs/html/intl/ja/guide/topics/ |
D | fundamentals.jd | 609 …br/>{@code void onResume()} <br/>{@code void onPause()} <br/>{@code void onStop()} <br/>{@code voi… 637 …onStop onStop()}</code> の呼び出しで終了します。このライフタイムの間は、ユーザーが画面上でそのアクティビティを見ることができます。ただし、アクティビティがフォアグラウンドに… 685 …<p>その後、アクティビティがフォアグラウンドに表示された場合は {@code onResume()} が、他のアクティビティの後ろに隠れた場合は {@code onStop()} が呼び出されま… 687 <td align="center">{@code onResume()} <br/>または<br/>{@code onStop()}</td> 702 …<p>その後、アクティビティがフォアグラウンドに戻った場合は {@code onResume()} が、ユーザーから見えなくなった場合は {@code onStop()} が呼び出されます。</t… 704 <td align="center">{@code onResume()} <br/>または<br/>{@code onStop()}</td> 708 <td colspan="2" align="left"><code>{@link android.app.Activity#onStop onStop()}</code></td> 728 …ause()}、{@code onStop()}、および {@code onDestroy()} メソッドの 3 つは「可能」となっています。1 番目に挙げた {@code onPause()} … 776 <li>その後、開始されたアクティビティが画面上で見えなくなると、その {@code onStop()} メソッドが呼び出されます。</li> 813 サービスの停止に相当するコールバック、つまり {@code onStop()} メソッドはありません。 [all …]
|
/frameworks/support/v13/java/android/support/v13/dreams/ |
D | BasicDream.java | 106 public void onStop() { in onStop() method in BasicDream 107 super.onStop(); in onStop()
|
/frameworks/base/tests/SslLoad/src/com/android/sslload/ |
D | SslLoad.java | 67 protected void onStop() { in onStop() method in SslLoad 68 super.onStop(); in onStop()
|
/frameworks/base/docs/html/guide/components/ |
D | activities.jd | 416 protected void {@link android.app.Activity#onStop onStop()} { 417 super.onStop(); 446 android.app.Activity#onStop onStop()}. During this time, the user can see the activity 447 on-screen and interact with it. For example, {@link android.app.Activity#onStop onStop()} is called 452 it in {@link android.app.Activity#onStop onStop()} when the user can no longer see what you are 454 android.app.Activity#onStop onStop()} multiple times during the entire lifetime of the activity, as 520 to the foreground, or {@code onStop()} if it becomes hidden.</p></td> 522 <td align="center">{@code onResume()} <br/>or<br/> {@code onStop()}</td> 544 returns back to the front, or by {@code onStop()} if it becomes 547 <td align="center">{@code onResume()} <br/>or<br/> {@code onStop()}</td> [all …]
|
/frameworks/base/services/java/com/android/server/am/ |
D | FactoryErrorDialog.java | 36 public void onStop() { in onStop() method in FactoryErrorDialog
|
D | AppWaitingForDebuggerDialog.java | 58 public void onStop() { in onStop() method in AppWaitingForDebuggerDialog
|
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/ |
D | AppWidgetHostActivity.java | 162 protected void onStop() { in onStop() method in AppWidgetHostActivity 163 super.onStop(); in onStop()
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceFragment.java | 187 public void onStop() { in onStop() method in PreferenceFragment 188 super.onStop(); in onStop()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | DialogFragment.java | 416 public void onStop() { in onStop() method in DialogFragment 417 super.onStop(); in onStop()
|
/frameworks/base/docs/html/training/basics/location/ |
D | currentlocation.jd | 150 removeUpdates()} in {@link android.app.Activity#onStop()}. ({@link android.app.Activity#onStop()} 157 protected void onStop() { 158 super.onStop();
|
/frameworks/native/include/android/ |
D | native_activity.h | 150 void (*onStop)(ANativeActivity* activity); member
|