Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
InspectorScreen()
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void
|
initialize(Object object)
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void
|
onPause()
| ||||||||||
void
|
onResume()
|
Methods inherited from
class
sofia.app.Screen
| |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void
|
afterInitialize()
Called once the screen has been created and made visible.
| ||||||||||
void
|
afterLayoutInflated(boolean inflated)
This method is called after an attempted was made to inflate the
screen's layout.
| ||||||||||
void
|
beforeInitialize()
Called before
initialize() during the screen creation process. | ||||||||||
boolean
|
doInitializeAfterLayout()
Determines whether the user's | ||||||||||
void
|
finish(Object result)
Call this method when the current screen is finished and should be
closed.
| ||||||||||
LayoutInflater
|
getLayoutInflater()
| ||||||||||
ScreenMixin
|
getScreenMixin()
Not intended to be called by users; this method is public as an
implementation detail.
| ||||||||||
Object
|
getSystemService(String service)
This method is overridden to replace the default Android layout inflater
with one that supports Sofia's enhancements.
| ||||||||||
void
|
initialize()
Called when the screen has been created and is about to be displayed on
the device.
| ||||||||||
void
|
log(String message)
Prints an informational message to the system log, tagged with the
"User Log" tag so that it can be easily identified in the LogCat view.
| ||||||||||
void
|
onActivityResult(int requestCode, int resultCode, Intent data)
Called when a sub-activity returns yielding a result.
| ||||||||||
void
|
onCreate(Bundle savedInstanceState)
Called when the activity is created.
| ||||||||||
boolean
|
onCreateOptionsMenu(Menu menu)
| ||||||||||
void
|
onDestroy()
| ||||||||||
boolean
|
onMenuItemSelected(int featureId, MenuItem item)
| ||||||||||
void
|
onPause()
| ||||||||||
void
|
onResume()
| ||||||||||
void
|
onSaveInstanceState(Bundle bundle)
| ||||||||||
void
|
onStop()
| ||||||||||
void
|
presentActivity(Intent intent, String returnMethod)
Starts the activity with the specified intent.
| ||||||||||
void
|
presentScreen(Class<? extends Activity> screenClass, Object... args)
Starts the activity represented by the specified
Screen subclass
and slides it into view. | ||||||||||
void
|
showAlertDialog(String title, String message)
Displays an alert dialog and waits for the user to dismiss it.
| ||||||||||
boolean
|
showConfirmationDialog(String title, String message)
Displays a confirmation dialog and waits for the user to select an
option.
|
Methods inherited from
class
java.lang.Object
| |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Object
|
clone()
| ||||||||||
boolean
|
equals(Object arg0)
| ||||||||||
void
|
finalize()
| ||||||||||
final
Class<?>
|
getClass()
| ||||||||||
int
|
hashCode()
| ||||||||||
final
void
|
notify()
| ||||||||||
final
void
|
notifyAll()
| ||||||||||
String
|
toString()
| ||||||||||
final
void
|
wait()
| ||||||||||
final
void
|
wait(long arg0, int arg1)
| ||||||||||
final
void
|
wait(long arg0)
|
Methods inherited from
interface
sofia.app.ScreenMethods
| |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract
void
|
finish(Object result)
Call this method when the current screen is finished and should be
closed.
| ||||||||||
abstract
void
|
presentActivity(Intent intent, String returnMethod)
Starts the activity with the specified intent.
| ||||||||||
abstract
void
|
presentScreen(Class<? extends Activity> screenClass, Object... args)
Starts the activity represented by the specified screen class
and slides it into view.
| ||||||||||
abstract
void
|
showAlertDialog(String title, String message)
Displays an alert dialog and waits for the user to dismiss it.
| ||||||||||
abstract
boolean
|
showConfirmationDialog(String title, String message)
Displays a confirmation dialog and waits for the user to select an
option.
|