Добавьте ваш полный текст с восклицательными знаками только в один TextView.Используйте строку Spannable, чтобы задать цвет восклицания.
TextView textView = (TextView)findViewById(R.id.mytextview01);
String mText = textView.getText();
Spannable wordtoSpan = new SpannableString(mText);
wordtoSpan.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
wordtoSpan.setSpan(new ForegroundColorSpan(Color.BLUE), (mText.Length()-2), (mText.Length()-1), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(wordtoSpan);