If I do something like this
someTextView.setText(someString + " and more!");
it warns me "Do not concatenate text displayed with setText. Use resource string with placeholders."
Why does it warn this when string concatenation seems to work just fine?