Back to project page FallingBall.
The source code is released under:
GNU General Public License
If you think the Android project FallingBall listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.fmi.android.brickpong; //from ww w. java 2 s.c o m import android.app.Activity; import android.os.Bundle; import android.view.Window; import android.view.WindowManager; import edu.fmi.android.brickpong.listeners.OnGameEventsListener; import edu.fmi.android.brickpong.view.GameLayout; public class GameActivity extends Activity implements OnGameEventsListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final GameLayout gameLayout = new GameLayout(this); gameLayout.setOnGameEventsListener(this); setContentView(gameLayout); final Window window = getWindow(); window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); } @Override public void onGameEnd() { finish(); } @Override public void onGameScoreChanged() { // blank } }