whats the deal with
CharSequence contentTitle = R.string.value;
Error cannot convert from int to CharSequence. Is there a way around this or a
You could use String s = getResources().getString(R.string.value); also.
String s = getResources().getString(R.string.value);