Answers for "spanable taxt android"

0

spannable string in android java for color

String text2 = text + CepVizyon.getPhoneCode() + "nn"
            + getText(R.string.currentversion) + CepVizyon.getLicenseText();

Spannable spannable = new SpannableString(text2);

spannable.setSpan(new ForegroundColorSpan(Color.WHITE), text.length(), (text + CepVizyon.getPhoneCode()).length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

myTextView.setText(spannable, TextView.BufferType.SPANNABLE);
Posted by: Guest on May-09-2020

Code answers related to "spanable taxt android"

Browse Popular Code Answers by Language