0

我试图在我的 String 1 颜色(例如红色)中只给元音上色,而用另一种颜色(例如:蓝色)为非元音上色。但是 SpannableString setSpan() 方法在遍历每个字符时不一致。该功能正在正确检测誓言和非誓言,就像我检查了记录的输出一样,除了颜色不正确:

//ColorLogic.java:
public SpannableString colorString(String myStr)
    {
        SpannableString spnStr=new SpannableString(myStr);
        ForegroundColorSpan vowColor=new ForegroundColorSpan(Color.RED);
        ForegroundColorSpan conColor=new ForegroundColorSpan(Color.BLUE);
        int strLen=myStr.length();
        for(int i=0; i< strLen; i++)
        {
            if (vowSet.contains(Character.toLowerCase(myStr.charAt(i))))
            //if (i%2==0)
            {
                 Log.v(DTAG, "vow"+myStr.charAt(i));
                 spnStr.setSpan(vowColor, i, i, 0);

            }
            else
            {
                Log.v(DTAG, "cons"+myStr.charAt(i));
                spnStr.setSpan(conColor, i, i, 0);
            }
        }
        return spnStr;
    }

    //In my OnCreate of my activity class:
    //PASS
     //Log.v(DTAG, message);
     // Create the text view
     TextView textView = new TextView(this);
     textView.setTextSize(50);

     //Call Color Logic to color each letter individually
     ColorLogic myColorTxt=new ColorLogic();
     SpannableString spnMsg=myColorTxt.colorString(message);
     //Log.v(DTAG, "spnMsg: "+spnMsg.toString());

     textView.setText(spnMsg, BufferType.SPANNABLE);
    //textView.setTextColor(Color.GREEN);
     setContentView(textView);
     }


      ![Vows Only its correct (non-vowels only is correct as well)][1]
          ![With cons and vows, 2 letters then its incorrect!][2]

交替誓言和缺点也是不正确的

4

1 回答 1

1

您不能重用跨度对象。正如 pskink 所指出的,请ForegroundColorSpan为每个setSpan()调用使用不同的对象。

此外,您可能希望总体上使用更少的跨度。虽然您的样本(“abibobu”)需要尽可能多的跨度,但大多数单词都有辅音和元音串在一起。例如,单词“辅音”有两个两个辅音跨度(“ns”和“nt”)。这些可以使用单个ForegroundColorSpan而不是两个来着色,从而提高渲染速度。Span 很简单,但不是最快的,因此您使用的 Span 越少,您的应用程序的性能就越好,尤其是在动画情况下(例如,在 a 中滚动ListView)。

此外,您可能只需要为辅音或元音着色除非计划为连字符和撇号使用第三种颜色。请记住:您的文本可以以颜色开头(例如,android:textColor)。

于 2013-12-08T17:33:08.450 回答