/frameworks/base/docs/html/training/basics/activity-lifecycle/ |
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 69 while the activity is stopped, the system calls {@link android.app.Activity#onRestart onRestart()} 135 {@link android.app.Activity#onRestart()}. The system also calls the {@link 138 android.app.Activity#onRestart()} method, however, is called only when the activity resumes from the 142 <p>It's uncommon that an app needs to use {@link android.app.Activity#onRestart()} to restore 176 protected void onRestart() { 177 super.onRestart(); // Always call the superclass method first
|
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/ |
ActivityA.java | 57 protected void onRestart() { 58 super.onRestart();
|
ActivityB.java | 57 protected void onRestart() { 58 super.onRestart();
|
ActivityC.java | 57 protected void onRestart() { 58 super.onRestart();
|
/cts/tests/src/android/app/cts/ |
InstrumentationTestActivity.java | 115 protected void onRestart() { 116 super.onRestart(); 271 public void setOnRestart(boolean onRestart) { 272 mOnRestart = onRestart;
|
LaunchpadActivity.java | 122 public static final String ON_RESTART = "onRestart"; 261 protected void onRestart() {
|
/system/core/rootdir/ |
init.rc | 371 onrestart restart zygote 372 onrestart restart media 373 onrestart restart surfaceflinger 374 onrestart restart drm 401 onrestart restart zygote 406 onrestart write /sys/android_power/request_state wake 407 onrestart write /sys/power/state on 408 onrestart restart media 409 onrestart restart netd
|
/system/core/init/ |
signal_handler.c | 110 /* Execute all onrestart commands for this service. */ 111 list_for_each(node, &svc->onrestart.commands) {
|
init.h | 105 struct action onrestart; /* Actions to execute on restart. */ member in struct:service
|
keywords.h | 68 KEYWORD(onrestart, OPTION, 0, 0)
|
init_parser.c | 635 svc->onrestart.name = "onrestart"; 636 list_init(&svc->onrestart.commands); 745 list_add_tail(&svc->onrestart.commands, &cmd->clist);
|
readme.txt | 100 onrestart
|
/development/samples/training/basic/ActivityLifecycle/res/values/ |
strings.xml | 27 <string name="on_restart">onRestart</string>
|
/external/jmonkeyengine/engine/src/android/com/jme3/app/ |
AndroidHarness.java | 202 protected void onRestart() {
203 super.onRestart();
208 logger.info("onRestart");
|
/hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/ |
FmRxRdsConfig.java | 329 public void onRestart() { 330 Log.i(TAG, "onRestart()-Entered"); 331 super.onRestart();
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiServiceDiscoveryActivity.java | 108 protected void onRestart() { 113 super.onRestart();
|
/frameworks/base/docs/html/intl/ja/guide/topics/ |
fundamentals.jd | [all...] |
/hardware/ti/wpan/tools/FM/FmTxApp/src/com/ti/fmtxapp/ |
FmTxConfig.java | 356 public void onRestart(){ 357 Log.i(TAG,"onRestart()-Entered"); 358 super.onRestart();
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SearchActivity.java | 355 protected void onRestart() { 356 if (DBG) Log.d(TAG, "onRestart()"); 357 super.onRestart();
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
LaunchpadActivity.java | 127 public static final String ON_RESTART = "onRestart"; 209 protected void onRestart() {
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ClassZeroActivity.java | 143 Log.d(TAG, "onRestart time = " + Long.toString(mTimerSet) + " "
|
/frameworks/base/core/java/com/android/internal/app/ |
ResolverActivity.java | 214 protected void onRestart() { 215 super.onRestart();
|
/packages/apps/Music/src/com/android/music/ |
MusicPicker.java | 488 @Override public void onRestart() { 489 super.onRestart();
|
/frameworks/base/core/java/android/app/ |
Activity.java | 238 * protected void onRestart(); 276 * <th colspan="2" align="left" border="0">{@link android.app.Activity#onRestart onRestart()}</th> 322 * <p>Followed by either <code>onRestart()</code> if 326 * <td align="center"><code>onRestart()</code> or<br> [all...] |
/frameworks/base/docs/html/guide/components/ |
activities.jd | 507 <td colspan="2" align="left"><code>{@link android.app.Activity#onRestart 508 onRestart()}</code></td> 555 <p>Followed either by {@code onRestart()} if 559 <td align="center">{@code onRestart()} <br/>or<br/> {@code onDestroy()}</td> [all...] |