Methods Summary |
---|
static void | log(java.lang.String message)
if (LOG_ENABLED) {
Log.v(LOG_TAG, message);
}
|
public void | onCreate(android.os.Bundle icicle)
super.onCreate(icicle);
/* Create our Preview view and set it as the content of our Activity */
mView = new FountainFboView(this);
setContentView(mView);
|
protected void | onPause()
Log.e("rs", "onPause");
/* Ideally a game should implement onResume() and onPause()
to take appropriate action when the activity loses focus */
super.onPause();
mView.pause();
|
protected void | onResume()
Log.e("rs", "onResume");
/* Ideally a game should implement onResume() and onPause()
to take appropriate action when the activity loses focus */
super.onResume();
mView.resume();
|