HomeSort by relevance Sort by last modified time
    Searched full:onrestart (Results 1 - 25 of 51) sorted by null

1 2 3

  /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/init/
signal_handler.c 110 /* Execute all onrestart commands for this service. */
111 list_for_each(node, &svc->onrestart.commands) {
init.h 103 struct action onrestart; /* Actions to execute on restart. */ member in struct:service
keywords.h 68 KEYWORD(onrestart, OPTION, 0, 0)
init_parser.c 639 svc->onrestart.name = "onrestart";
640 list_init(&svc->onrestart.commands);
749 list_add_tail(&svc->onrestart.commands, &cmd->clist);
readme.txt 107 onrestart
  /development/samples/training/basic/ActivityLifecycle/res/values/
strings.xml 27 <string name="on_restart">onRestart</string>
  /system/core/rootdir/
init.rc 443 onrestart restart zygote
444 onrestart restart media
445 onrestart restart surfaceflinger
446 onrestart restart drm
473 onrestart restart zygote
478 onrestart write /sys/android_power/request_state wake
479 onrestart write /sys/power/state on
480 onrestart restart media
481 onrestart restart netd
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupWizardActivity.java 322 protected void onRestart() {
323 super.onRestart();
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 142 Log.d(TAG, "onRestart time = " + Long.toString(mTimerSet) + " "
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 215 protected void onRestart() {
216 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 239 * protected void onRestart();
277 * <th colspan="2" align="left" border="0">{@link android.app.Activity#onRestart onRestart()}</th>
323 * <p>Followed by either <code>onRestart()</code> if
327 * <td align="center"><code>onRestart()</code> or<br>
    [all...]

Completed in 1442 milliseconds

1 2 3