More Code - The String Created here is R.string.c#### - c.#### is a pre-defined string i want to run as a setText.
int Q1 = question1.getmCounter();
int Q2 = question2.getmCounter();
int Q3 = question3.getmCounter();
int Q4 = question4.getmCounter();
int qTotal = Q1 + Q2 + Q3 + Q4;
String Test5 = "R.string.c" + qTotal;
This is how i am now getting the "string" i want to feed.
textOut = (TextView) findViewById(R.id.ChmpNametxt);
textOut.setText(Test5);
This is where i want to feed it.