Add original project.

This commit is contained in:
2025-01-04 12:48:09 -07:00
parent 2ea0f8441d
commit 6e7114a24d
92 changed files with 3462 additions and 0 deletions
@@ -0,0 +1,56 @@
package com.hyperling.apps.games;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Window;
import android.view.WindowManager;
/**
* Created by ling on 12/17/16.
*/
public class GameActivity extends AppCompatActivity {
BirdGameView birdGameView;
ChickenGameView chickenGameView;
private String gameType, birdGame, cowGame, pigGame, chickenGame, catGame;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
gameType = GameActivity.this.getIntent().getAction();
// Game types
birdGame = getString(R.string.btnGameBird);
cowGame = getString(R.string.btnGameCow);
pigGame = getString(R.string.btnGamePig);
chickenGame = getString(R.string.btnGameChicken);
catGame = getString(R.string.btnGameCat);
if (gameType.equals(birdGame)) {
birdGameView = new BirdGameView(GameActivity.this);
setContentView(birdGameView);
}
else if (gameType.equals(chickenGame)) {
chickenGameView = new ChickenGameView(GameActivity.this);
setContentView(chickenGameView);
}
}
@Override
protected void onPause() {
if (gameType.equals(birdGame)) {
birdGameView.pauseGame();
}
else if (gameType.equals(chickenGame)) {
chickenGameView.pauseGame();
}
super.onPause();
}
}