whats the deal with
CharSequence contentTitle = R.string.value;
Error cannot convert from int to CharSequence. Is there a way around this or am i missing something? i tried
String s = R.string.value + "";
CharSequence contentTitle = s;
it returns integers values. Any help?