Wanting to make some output in Logcat or Run more visible, I would like to color it.
But nothing worked, that I found on stackoverflow,
not the ANSI escape codes and
not even System.err.println("Color")
!
(See e.g. this question)
Finally I tried: Log.e(TAG, "eeeee") // (TAG needs to be a String)
That worked! It was red.
(Note: Maybe try-catch blocks remove colors.)
But I would like to use more colors, too. Does anyone know how to do it?
Maybe the ANSI escape codes can be used, too. But how?
Looking forward to the answers!