Exemplo n.º 1
0
 public void updateTextViews() {
   TextView storeScoreTextView = (TextView) findViewById(R.id.storeScoreTextView);
   storeScoreTextView.setText(String.valueOf(MainApplication.getScore()));
   TextView storeMoneyTextView = (TextView) findViewById(R.id.storeMoneyTextView);
   storeMoneyTextView.setText(MainApplication.getMoney() + "$");
 }