In Java, System.out.printf("\t")
displays the TAB character in the console.
I wanted to have this feature in DDC Logcat, displaying the TAB character in the log message.
public void testLogMessage(){ Log.d("Test", "TAB: " + "\t" + "AAAAAAAA" + "\t" + "AAAAAAAAA"); }
However, in Logcat, I do not see the TAB character in A.
If possible, how should I output the TAB character in Logcat? Thanks in advance.
EDIT:
I guess I did not understand my question. I want to show the control character TAB:
I just couldn't get the TAB character to display. Thanks in advance.
source share