I have a number being generated from a date. I have some string with content I need to pull.
string name would be something like, week_8. 8 being the generated number. Im not quite sure how I could go about adding it to my java. See below, the week_+diff. Thank you
String desc = getResources().getString(R.string.week_+diff);
d = (TextView) view.findViewById(R.id.description);
d.setText(desc);