override onRestart to, like onStart, register subclasses with

DispatchNotify class as ready to handle notifications.
This commit is contained in:
Andy2 2011-02-09 06:44:16 -08:00
parent d02295ac85
commit cf65d9baec

View file

@ -45,6 +45,13 @@ public class XWListActivity extends ListActivity {
DispatchNotify.SetRunning( this );
}
@Override
protected void onRestart()
{
super.onRestart();
DispatchNotify.SetRunning( this );
}
@Override
protected void onStop()
{