यह एक स्पैनिंगेबल स्ट्रिंग का उपयोग करके प्राप्त किया जा सकता है। आपको निम्नलिखित आयात करने की आवश्यकता होगी
import android.text.SpannableString;
import android.text.style.BackgroundColorSpan;
import android.text.style.StyleSpan;
और फिर आप निम्न की तरह कुछ का उपयोग करके पाठ की पृष्ठभूमि बदल सकते हैं:
TextView text = (TextView) findViewById(R.id.text_login);
text.setText("");
text.append("Add all your funky text in here");
Spannable sText = (Spannable) text.getText();
sText.setSpan(new BackgroundColorSpan(Color.RED), 1, 4, 0);
जहां यह एक लाल रंग के साथ पॉज़ 1 - 4 के चौराहों को उजागर करेगा। उम्मीद है की यह मदद करेगा!