I am working on a Hangman game. Game is working as it should except that when i start a new game, i am unable to clear the data that was stored from the previous game. So it gives me a screen that looks like the following after the user clicks "play again".
Screenshot of Hangman Game - How it should look after clicking "play again"
Screenshot of Hangman Game after clicking "play again"
How do i reset the data so that the textview and the buttons after the startNewGame method is executed?
tried to use textView.setText("") to do a reset but it is not working. Appreciate if you can help shed some light for me. Thanks!
My Codes are as follows.
package com.desmondwong.hangmangame;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.GridLayout;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.ViewSwitcher;
import java.util.Random;
public class GameActivity extends AppCompatActivity {
//To reference the components
ImageSwitcher imageSwitcher;
TextView textView;
TextView textViewScore;
Button btn [] = new Button[26];
//Images for the hangman
int img [] = {R.drawable.img0,
R.drawable.img1,
R.drawable.img2,
R.drawable.img3,
R.drawable.img4,
R.drawable.img5,
R.drawable.img6,
R.drawable.img7,
R.drawable.img8};
AlertDialog helpAlert;
//Variables
String strSecret = "", strGuess="", strText="";
String strWords[] = {"APPLE", "ORANGE","BANANA"};
int intError = 0; //Error made by player
int livesRemaining = 8; //Lives remaining by player
int numCorr = 0; //Correct letter guess by player
Random random = new Random(); //Random generator
public void startNewGame(){
intError = 0; //Error made by player
livesRemaining = 8; //Lives remaining by player
numCorr = 0; //Correct letter guess by player
imageSwitcher.removeAllViews();
//textViewScore.setText(String.valueOf(livesRemaining));
//textView.setText("");
setupImageSwitcher();
setup26Buttons();
getSecretWord();
}
//To create help icon at top right
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
//To create help icon at top right
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
//case android.R.id.home:
// NavUtils.navigateUpFromSameTask(this);
//return true;
case R.id.action_help:
showHelp();
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_game);
//Retrieve the reference
imageSwitcher = findViewById(R.id.imageSwitcher);
textView = findViewById(R.id.textView);
textViewScore = findViewById(R.id.textViewScore);
textViewScore.setText(String.valueOf(livesRemaining));
setupImageSwitcher();
setup26Buttons();
getSecretWord();
}
private void setup26Buttons() {
GridLayout g = findViewById(R.id.gridLayout);
//to create 26 buttons
for(int i = 0; i<btn.length; i++) {
btn[i] = new Button(this, null, R.attr.buttonStyleSmall); //Buttonsytlesmall so that it fits the screen
btn[i].setText(""+(char)('A'+i)); //need to set back to char, as +i will set it back to integer. "" to set this to a String so it is sync to setText
btn[i].setTag(""+(char)('A'+i));
btn[i].setOnClickListener(new View.OnClickListener() {
@SuppressLint("ResourceAsColor")
@Override
public void onClick(View v) {
strGuess += v.getTag(); //Get letter that the player guessed and keep adding on to strGuess
v.setEnabled(false); //disable pressed button since the player already press
v.setBackgroundColor(android.R.color.black);
//Check for error guess. If the letter is not inside the strSecret, it will return less than 0
if (strSecret.indexOf(v.getTag().toString())<0){
intError++; //your error is added
int livesRemaining = 8;
livesRemaining -= intError; // Countdown based on errors recorded
textViewScore.setText(String.valueOf(livesRemaining));
imageSwitcher.setImageResource(img[intError]); //set the img no. to follow the error
}
else {
numCorr++;
}
boolean playerWin = true;
//Display all correct guesses
strText = ""; //reset the display
for (int i = 0 ; i<strSecret.length();i++){
char ch = strSecret.charAt(i); // get each character from strSecret
//To check if this letter can be found in strGuess
if(strGuess.indexOf(ch)>=0){
//found
strText += ch;
}
else{
//Not found
strText += "-";
playerWin=false;
}
}
textView.setText(strText);
if (playerWin) {
if (numCorr == strSecret.length()) {
//Toast.makeText(getApplicationContext(), "You won", Toast.LENGTH_LONG).show();
//let user know they have won, ask if they want to play again
AlertDialog.Builder winBuild = new AlertDialog.Builder(GameActivity.this);
winBuild.setTitle("Amazing! You save Batman!");
winBuild.setMessage("The Hangman\'s favourite fruit is:\n\n" + strSecret);
winBuild.setPositiveButton("Play Again",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
GameActivity.this.startNewGame();
}
});
winBuild.setNegativeButton("Exit",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
GameActivity.this.finish();
}
});
winBuild.show();
}
} else if (livesRemaining > 0) {
//still have lives remaining. do nothing
}
else {
//Toast.makeText(getApplicationContext(), "You Lost",Toast.LENGTH_LONG).show();
// Display Alert Dialog
AlertDialog.Builder loseBuild = new AlertDialog.Builder(GameActivity.this);
loseBuild.setTitle("Batman got executed!");
loseBuild.setMessage("You lose!\n\nThe answer was:\n\n"+ strSecret);
loseBuild.setPositiveButton("Play Again",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
GameActivity.this.startNewGame();
}});
loseBuild.setNegativeButton("Exit",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
GameActivity.this.finish();
}});
loseBuild.show();
}
}
});
g.addView(btn[i]);
}
}
private void getSecretWord() {
int index = random.nextInt(strWords.length);
strSecret = strWords[index];
for(int i=0; i<strSecret.length(); i++) {
strText += "-"; //to create multiple - for the unknown word
}
textView.setText(strText);
}
private void setupImageSwitcher() {
//https://www.tutorialspoint.com/android/android_imageswitcher.htm
imageSwitcher.setFactory(new ViewSwitcher.ViewFactory() {
@Override
public View makeView() {
ImageView imageView = new ImageView(getApplicationContext());
imageView.setImageResource(R.drawable.img0);
return imageView;
}
});
Animation aniOut = AnimationUtils.loadAnimation(this, android.R.anim.slide_out_right);
Animation aniIn = AnimationUtils.loadAnimation(this, android.R.anim.slide_in_left);
imageSwitcher.setOutAnimation(aniOut);
imageSwitcher.setOutAnimation(aniIn);
}
//show help information
public void showHelp(){
AlertDialog.Builder helpBuild = new AlertDialog.Builder(this);
helpBuild.setTitle("Help");
helpBuild.setMessage("Whisper the password (Hangman's favourite fruit) to save Batman\n\n"
+ "You only have 8 tries!");
helpBuild.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
helpAlert.dismiss();
}});
helpAlert = helpBuild.create();
helpBuild.show();
}
}