The following will programmatically set the text value of a TextView to an int.
//set to an integer value
int score = this.GameSession.Score;
TextView txtScore = (TextView) findViewById(R.id.game_txtScore);
txtScore.setText(String.valueOf(score));