Android中EditText的不同颜色

时间:2013-01-01 20:51:35

标签: android colors android-edittext

我正在尝试使EditText的文本具有多种颜色。例如,如果我的文字是,"这是一个美好的一天。",是否可以制作"它是"句子的一部分是绿色的,其余的是红色的?

4 个答案:

答案 0 :(得分:5)

我使用类似的东西来制作我的颜色的一些部分:

final String text = "Some Text";
Spannable modifiedText = new SpannableString(text);
modifiedText.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.green)), 0, lengthYouWant, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(modifiedText);

答案 1 :(得分:4)

您可以使用spannables

Spannable spannable = yourText.getText();
spannable .setSpan(new BackgroundColorSpan(Color.argb(a, r, g, b)), start, end, Spannable.SPAN_INCLUSIVE_INCLUSIVE);

答案 2 :(得分:1)

是。您需要创建一个Spannable对象(SpannedStringSpannedStringBuilder),然后设置它以应用您寻找的颜色。

例如,this sample project中的以下方法获取TextView的内容,搜索用户输入的字符串,并使用紫色背景颜色标记所有匹配项,删除所有先前的标记:

  private void searchFor(String text) {
    TextView prose=(TextView)findViewById(R.id.prose);
    Spannable raw=new SpannableString(prose.getText());
    BackgroundColorSpan[] spans=raw.getSpans(0,
                                             raw.length(),
                                             BackgroundColorSpan.class);

    for (BackgroundColorSpan span : spans) {
      raw.removeSpan(span);
    }

    int index=TextUtils.indexOf(raw, text);

    while (index >= 0) {
      raw.setSpan(new BackgroundColorSpan(0xFF8B008B), index, index
          + text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
      index=TextUtils.indexOf(raw, text, index + text.length());
    }

    prose.setText(raw);
  }

在您的情况下,更改前景色会使用ForegroundColorSpan而不是BackgroundColorSpan

使用EditText会让事情变得有点棘手,因为用户可以编辑文本,您需要选择符号来满足您想要的规则。例如,Spanned.SPAN_EXCLUSIVE_EXCLUSIVE会说:

  • 在跨区域中间输入的字符获得跨度效果(例如,前景色)
  • 在跨区域之前或之后立即输入的字符被认为是在跨区域之外,因此不会产生跨度效应

答案 3 :(得分:1)

我也有这个麻烦。几个小时后,我想出了如何处理它:

  mYourTextView.addTextChangedListener(new TextWatcher() {

        private String oldContent = "";

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            final String newContent = mYourTextView.getText().toString();

            if (newContent.length() > 10 && !oldContent.equals(newContent)) {
                oldContent = newContent;
                mYourTextView.setText(Html.fromHtml(
                        String.format("%s", "<font color='#000000'>" + newContent.substring(0, 10) + "</font>")
                                + "<font color='#ff0000'>" + newContent.substring(10, newContent.length()) + "</font>"));
                Log.d("onTextChanged", "Start : " + start);

                //move cursor after current character
                mYourTextView.setSelection(start + 1 > mYourTextView.getText().toString().length()
                        ? start : start + 1);

            }
        }

        @Override
        public void afterTextChanged(Editable s) {
        }
    });

此代码使前10个字符为黑色,后面的字符为红色。 我们需要变量oldContent来防止循环无穷大,因为当EditText调用setText()然后onTextChanged