EditText - change background color of text (and only text - not the whole view)

那年仲夏 提交于 2019-12-18 04:26:15

问题


When a user enters information in an EditText, and moves to the next EditText, the information is highlighted as shown below:

The code for this:

edittext.setOnFocusChangeListener(new OnFocusChangeListener() {

@Override
public void onFocusChange(View v, boolean hasFocus) {
    if (hasFocus) {
        v.setBackgroundColor(Color.WHITE);
        ((EditText) v).setTextColor(Color.BLACK);
    } else {

        //v.setBackgroundColor(Color.LTGRAY); //also works like this
        ((EditText) v).setBackgroundColor(Color.LTGRAY);
        ((EditText) v).setTextColor(Color.BLACK);
    }

   }
});

Which is called in the onCreate method like this:

edittext = (EditText) findViewById(R.id.editText1);

However, It would be much better if the background color only applied to the text itself, rather than the view, like this (from the gmail app):

Does anybody have any suggestions on how to apply the background color to the text only (not the whole EditText view) as above?

Thanks.


回答1:


You can achieve what you want by using a BackgroundColorSpan. You can find more information here:

http://developer.android.com/reference/android/text/style/BackgroundColorSpan.html

To use spans you need to build a SpannableString which you can do using a SpannableStringBuilder:

http://developer.android.com/reference/android/text/SpannableStringBuilder.html



来源:https://stackoverflow.com/questions/19100228/edittext-change-background-color-of-text-and-only-text-not-the-whole-view

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!