Epson epos sdk receipt alignment issue
i'm currently using epson ePOS SDK for android. i need to print the receipt that menu name align to the left and its price align to the right in the same line but it doesn't work properly, my temporary solution is add some feed line to make its price align right, is it possible to have both text align left and right in the same line ? (Attachments below and please ignore question mark symbols) mPrinter.addTextAlign(Printer.ALIGN_LEFT); mPrinter.addFeedLine(0); textData.append(menuName); mPrinter.addText(textData.toString()); textData.delete(0, textData.length()); mPrinter.addFeedLine(0); /