Hi there,
I want to print a part of a string in BOLD because it is the Title of the string. I saw this example and found it to be working for setting it on a textView but I don't have a textView and want to simply print the string using TextPrintJob. Below is the code on how I print the string;
PrintJob printJob = new TextPrintJob.Builder().text(messageToPrint[0]).build(); new PrintJobsConnector(con).print(printer, printJob);
How can I achieve this?
Please advice.