The code
startActivity(Intent.createChooser(shareIntent,"text..text"));
works fine, but the code
startActivity(Intent.createChooser(shareIntent,R.string.listen));
Gives me the error "Wrong 2nd argument type. Found 'int', required 'java.lang.CharSequence'."
But my R.string.listen isn't a int, it is a string.