org.hermit.android.test
Class AndroidTest

java.lang.Object
  extended by Activity
      extended by org.hermit.android.core.MainActivity
          extended by org.hermit.android.test.AndroidTest

public class AndroidTest
extends MainActivity

A simple test app.

Author:
Ian Cameron Smith

Nested Class Summary
 
Nested classes/interfaces inherited from class org.hermit.android.core.MainActivity
MainActivity.ActivityListener
 
Constructor Summary
AndroidTest()
           
 
Method Summary
 void onSaveInstanceState(Bundle outState)
          Called to retrieve per-instance state from an activity before being killed so that the state can be restored in onCreate(Bundle) or onRestoreInstanceState(Bundle) (the Bundle populated by this method will be passed to both).
 
Methods inherited from class org.hermit.android.core.MainActivity
createEulaBox, createMessageBox, reportException, setAboutInfo, setHomeInfo, setLicenseInfo, showAbout, showEula, showFirstEula, startActivityForResult
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AndroidTest

public AndroidTest()
Method Detail

onSaveInstanceState

public void onSaveInstanceState(Bundle outState)
Called to retrieve per-instance state from an activity before being killed so that the state can be restored in onCreate(Bundle) or onRestoreInstanceState(Bundle) (the Bundle populated by this method will be passed to both). If called, this method will occur before onStop(). There are no guarantees about whether it will occur before or after onPause().

Parameters:
outState - A Bundle in which to place any state information you wish to save.