patternjavaMinor
Setting color of specific keywords in a textview
Viewed 0 times
colorsettingkeywordsspecifictextview
Problem
I'm developing an Android app to view C-programs. I wanted to give a simple color scheme to the text which is stored in database, retrieved as a string and then passed on to the textview.
The code I have written assigns the green color to header file declarations and brackets, the blue color is assigned to
It is, however, very inefficient. Before applying this color scheme, my app was displaying the textview activity instantly. Now, depending on the length of the C-programs, it takes up to 4 to 5 seconds, which is really poor performance.
It takes one keyword at a time, then iterates the complete text of textview looking for that particular keyword only and changes its color, sets the text again. Thus, it traverses text of the entire textview 29 times as I have defined 29 keywords in String arrays (namely
The activity's
The
```
private void fontcolor(String text,int color)
{
Spannable raw=new SpannableString(textView.getText());
int index=TextUtils.indexOf(raw, text);
while (index >= 0)
{
raw.setSpan(new ForegroundColorSpan(color), index, index + text.le
The code I have written assigns the green color to header file declarations and brackets, the blue color is assigned to
numbers, printf, scanf, and the red color is assigned to datatypes such as int, char, float.It is, however, very inefficient. Before applying this color scheme, my app was displaying the textview activity instantly. Now, depending on the length of the C-programs, it takes up to 4 to 5 seconds, which is really poor performance.
It takes one keyword at a time, then iterates the complete text of textview looking for that particular keyword only and changes its color, sets the text again. Thus, it traverses text of the entire textview 29 times as I have defined 29 keywords in String arrays (namely
keywordsgreen, keywordsblue, keywordsred).The activity's
onCreate() function:textView = (TextView) findViewById(R.id.textView1);
textView.setText(programtext);
textView.setBackgroundColor(0xFFE6E6E6);
//The problem starts here
String [] keywordsgreen={"#define","#include","stdio.h","conio.h","stdlib.h","math.h","graphics.h","string.h","malloc.h","time.h","{","}","(",")","","&","while ","for "};
for(String y:keywordsgreen)
{
fontcolor(y,0xff21610B);
}
String [] keywordsred={"%d","%f","%c","%s","int ","char ","float","typedef","struct ","void "};
for(String y:keywordsred)
{
fontcolor(y,0xFFB40404);
}
String [] keywordsblue={"printf","scanf","\n","getch","0","1","2","3","4","5","6","7","8","9"};
for(String y:keywordsblue)
{
fontcolor(y,0xFF00056f);
}The
fontcolor() function:```
private void fontcolor(String text,int color)
{
Spannable raw=new SpannableString(textView.getText());
int index=TextUtils.indexOf(raw, text);
while (index >= 0)
{
raw.setSpan(new ForegroundColorSpan(color), index, index + text.le
Solution
First of all, some side notes:
-
In your
-
In your
keywordsgreen array, you're checking for very specific library names. But you also check for #include and #define. So what if I include `? Your current code would search the text, find #include, turn it green, then search again, find and turn that green. But the whole line might as well be green. Instead, just look for the # symbol at the absolute start of the line (it would take a little more logic, of course). That way, you eliminate most of the keywordsgreen array.
-
Also, you're setting the text every single time you edit a single word. You don't need to do that. Just keep one SpannableString and pass that around, setting the textView to that all the way at the end of the function.
-
I don't think this should be that slow. It's not a very good solution, but even for a 300-line source file, I can't imagine it would take 5 seconds. Put all that in a new thread and see what happens.
Example:
Thread colorTextThread = new Thread(new Runnable(){
public void run(){
//Put all that searching code in here
}//end of run
});
colorTextThread.start();
You put it on a new thread because the UI thread is super slow. Remember, though, if you want to change the textView on a separate thread, you have to use the runOnUiThread() function.
I'll add more later if no one tells you how to make the code faster. I've got to go at the moment, sorry.
EDIT:
After looking at your code again, I can't see a way to make it faster. The most important things you can do is to do the search on the "programText" variable you're passing to textView. That variable holds all the information you need, so you should manipulate that, and then pass it to textView.setText(). That way, you never have to call getText()`, which means you can do all of your text processing on a separate thread. If it runs slow even on a separate thread, then yes, your code is very slow. Otherwise, problem solved for now.Code Snippets
Thread colorTextThread = new Thread(new Runnable(){
public void run(){
//Put all that searching code in here
}//end of run
});
colorTextThread.start();Context
StackExchange Code Review Q#28146, answer score: 4
Revisions (0)
No revisions yet.