这是一个只有三个视图的简单游戏:一个TextView和两个按钮(红色和绿色按钮)。
播放器应该按下与TextView背景色相同颜色的按钮。如果TextView背景颜色为红色,则播放器应按红色按钮。
可以说有三种不同的播放模式: 常规:您可以全天玩。 时限:您只有3秒钟可以回答。 计时功能:在30秒内尽可能多地回答正确。
所有模式共享相同的布局(xml)。
newGame()和newRound()方法的行为会有所不同,具体取决于玩家选择的模式。
“常规”可以有2种状态: 播放=显示颜色,程序正在等待用户输入 给错了答案=玩家按下了错误的按钮。现在该按钮已禁用。播放器必须按正确的按钮才能继续(newRound)。
“时间限制”总是从3降低到0。当用户按下按钮时,计时器总是重新启动,如果计时器为0,则会触发newRound。
“计时赛”将从30倒数到0,但在其他方面类似于“常规”游戏。
所有这三种模式共享一些公共变量,例如: boolean isRed; //知道TextView是否为Red。
如何根据活动和课程进行组织/组织?
以下是一些实际代码:
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_red"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Normal game"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/btn_timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Timer game"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_red"
app:layout_constraintVertical_bias="0.041" />
</android.support.constraint.ConstraintLayout>
activity_play.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp"
tools:context=".PlayActivity">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp">
<TextView
android:id="@+id/txt_colorbox"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="40dp"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="3"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp">
<Button
android:id="@+id/btn_red"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="1"
android:text="" />
<Button
android:id="@+id/btn_green"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="1"
android:text="" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="4"
android:orientation="vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp">
</LinearLayout>
</LinearLayout>
</LinearLayout>
MainActivity.java:
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity implements
View.OnClickListener {
Button btn_normal;
Button btn_timer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn_normal = findViewById(R.id.btn_red);
btn_timer = findViewById(R.id.btn_timer);
btn_normal.setOnClickListener(this);
btn_timer.setOnClickListener(this);
}
@Override
public void onClick(View v) {
Intent intent = new Intent(this, PlayActivity.class);
if (v == btn_normal) {
intent.putExtra("GAME_MODE", "regular");
} else if (v == btn_timer) {
intent.putExtra("GAME_MODE", "timelimit");
}
startActivity(intent);
}
}
PlayActivity.java:
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class PlayActivity extends AppCompatActivity implements View.OnClickListener {
static Button btn_red;
static Button btn_green;
static TextView txt_colorbox;
Game game;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_play);
txt_colorbox = findViewById(R.id.txt_colorbox);
btn_red = findViewById(R.id.btn_red);
btn_green = findViewById(R.id.btn_green);
btn_red.setOnClickListener(this);
btn_green.setOnClickListener(this);
String gameMode = getIntent().getStringExtra("GAME_MODE");
if (gameMode.equals("regular")) {
game = new RegularGame();
} else if (gameMode.equals("timelimit")) {
game = new TimelimitGame();
}
else if (gameMode.equals("timetrial")) {
game = new TimetrialGame();
}
game.newGame();
game.newRound();
}
@Override
public void onClick(View v) {
if (v == btn_red) {
System.out.println("pressed Red");
} else if (v == btn_green) {
System.out.println("pressed Green");
}
}
}
Game.java:
public abstract class Game {
boolean isRed;
public void newGame() {
}
public void newRound() {
}
}
RegularGame.java
public class RegularGame extends Game {
@Override
public void newGame() {
System.out.println("New game: regular mode");
}
@Override
public void newRound() {
System.out.println("New Round");
}
}
TimelimitGame.java:
public class TimelimitGame extends Game {
@Override
public void newGame() {
System.out.println("New game: timelimit mode");
}
@Override
public void newRound() {
System.out.println("New Round");
}
}
TimetrialGame.java:
public class TimetrialGame extends Game {
@Override
public void newGame() {
System.out.println("New game: timer mode");
}
@Override
public void newRound() {
System.out.println("New Round");
}
}
我应该在Game()构造函数中提供Context / Activity吗?这样我就可以以这种方式访问TextView和Button,或者updateUI应该驻留在PlayActivity内,但可以从Game类中收集信息?