2016-03-24 9 views
-2

これは私のコードです。彼らは、入力正しい答えは、TextViewは、私が希望1のうち1が正しい状態ならば - ユーザーが自分の答えを入力し、AnswerCheck方法で送信ボタンを押すと、私はスコアは、たとえばTextViewに示されたいですいくつかの助けのような、おかげAndroidスタジオでスコアをチェック

public class Perimeter extends AppCompatActivity { 
    private int number; 
    private int number2; 
    private String myString; 
    private String myString2; 
    private int perimeter; 
    private Random rand; 
    private Random rand2; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_perimeter); 

     rand = new Random(); 
     rand2 = new Random(); 

     Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
     setSupportActionBar(toolbar); 

     FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); 
     fab.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View view) { 
       Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 
         .setAction("Action", null).show(); 
      } 
     }); 
    } 

    public void PerimeterGame(View view) { 
     number = rand.nextInt(12) + 1; 
     TextView myText = (TextView) findViewById(R.id.rand1); 
     myString = String.valueOf(number); 
     myText.setText(myString); 

     number2 = rand2.nextInt(12) + 1; 
     TextView myText2 = (TextView) findViewById(R.id.rand2); 
     myString2 = String.valueOf(number2); 
     myText2.setText(myString2); 

     ((TextView) findViewById(R.id.question)).setText 
     ("Find the perimeter of a rectange with a width of " + myString + "cm" + " and " + "length of " + myString2 + "cm" + "."); 
    } 

    public void AnswerCheck(View view) { 
     EditText num = (EditText) findViewById(R.id.answertext); 
     int val = Integer.parseInt(num.getText().toString()); 

     perimeter = (number + number2 + number + number2); 
     if (val == perimeter) { 
      Toast.makeText(this, "The answer is correct", Toast.LENGTH_SHORT).show(); 
     } else { 
      Toast.makeText(this, "The answer is incorrect ", Toast.LENGTH_SHORT).show(); 
     } 
     findViewById(R.id.showsolbutton).setEnabled(true); 
    } 
} 
+2

あなたはこれまでに何をしようとしたのですか?あなたが直面している問題は何ですか? – sujay

+0

私は正直なところ手がかりがない、それを行う方法 – TheOptimist

+0

誰も解決策を持っていますか? – TheOptimist

答えて

0

2つのセットのグローバル変数int

private int totalQuestion = 0;

private int correctQuestions = 0;

内側public void PerimeterGame(View view)増分totalQuestion 1つ

答えは一つpublic void AnswerCheck(View view)増分correctQuestionの内側に、正しいです。

最後に、テキストを表示

youTextView.setText(String.valueOf(correctQuestions) + " correct out of " + String.valueOf(totalQuestion));

それがお役に立てば幸いです。

public class Perimeter extends AppCompatActivity { 
    // Code ommitted 

    private int totalQuestion = 0 ; 
    private int correctQuestions = 0; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     // Code ommitted 
    } 

    public void PerimeterGame(View view) { 

     // Increment totalQuestion 
     totalQuestion++; 
     number = rand.nextInt(12) + 1; 
     TextView myText = (TextView) findViewById(R.id.rand1); 
     myString = String.valueOf(number); 
     myText.setText(myString); 

     number2 = rand2.nextInt(12) + 1; 
     TextView myText2 = (TextView) findViewById(R.id.rand2); 
     myString2 = String.valueOf(number2); 
     myText2.setText(myString2); 

     ((TextView) findViewById(R.id.question)).setText 
     ("Find the perimeter of a rectange with a width of " + myString + "cm" + " and " + "length of " + myString2 + "cm" + "."); 
    } 

    public void AnswerCheck(View view) { 
     EditText num = (EditText) findViewById(R.id.answertext); 
     int val = Integer.parseInt(num.getText().toString()); 

     perimeter = (number + number2 + number + number2); 
     if (val == perimeter) { 
      correctQuestions++; 
      Toast.makeText(this, "The answer is correct", Toast.LENGTH_SHORT).show(); 
     } else { 
      Toast.makeText(this, "The answer is incorrect ", Toast.LENGTH_SHORT).show(); 
     } 
     findViewById(R.id.showsolbutton).setEnabled(true); 

     // Display text 
     youTextView.setText(String.valueOf(correctQuestions) + " correct out of " + String.valueOf(totalQuestion)); 
    } 
} 
+0

、エラーが来ているID – TheOptimist

+0

おかげで、私はそれが固定しまった多くのことを「シンボルを解決することはできませんがmyscore」!! – TheOptimist

+0

それを聞いてうれしいです。答えが役に立ったら、投票するか、答えとしてマークすることを忘れないでください。乾杯! – PLOW

関連する問題