Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public void onClick(View v) {
  2.  
  3. if(outputText.getText().toString().equals(answer[count]))
  4. {
  5. outputText.setBackgroundColor(Color.GREEN);
  6. }
  7. else
  8. {
  9. outputText.setBackgroundColor(Color.RED);
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement