标签: android pdf itext alignment
我有这个
Paragraph p1 = new Paragraph(af); p1.setAlignment(Paragraph.ALIGN_LEFT);
这个
Paragraph p2 = new Paragraph(ad); p2.setAlignment(Paragraph.ALIGN_RIGHT);
但是当我创建pdf文件时,我遇到了问题.. p2它在p1下。我不想要这个。我希望p2在p1的右边,但在相同的位置。
我该怎么做?