0
我在我的android應用程序裏面使用了itext pdf生成器。我在哪裏使用有序列表和無序列表。我無法增加子彈和Order的文本大小。我使用下面的代碼增加了列表項大小。如何在itext android中增加列表項目符號大小?
List list = new List(List.ORDERED);
list.setPostSymbol(") ");
//Ingredients Entry
for (String ingredient : ingredients.split("#")) {
font = new Font(Font.FontFamily.HELVETICA, txtSize_content, Font.NORMAL, BaseColor.BLACK);
chunk = new Chunk(ingredient, font);
//To set alignment to chunk
phrase = new Phrase();
phrase.add(chunk);
para = new Paragraph();
para.add(phrase);
para.setSpacingBefore(txtSize_content);
para.setAlignment(Element.ALIGN_LEFT);
//end To set alignment to chunk
//Add List Item to List
ListItem item = new ListItem(para);
item.setAlignment(Element.ALIGN_JUSTIFIED);
list.add(item);
}
document.add(list);
完美的解決方案。 – nidhi