我使用iText
库来创建 pdf,在 Java 项目setBorderColor
工作中,我使用:
c1 = new PdfPCell(new Phrase("182-432-23-23",smallFontBold));
c1.setBorderColor(BaseColor.DARK_GRAY);
但在这段代码的 Android 项目中,我有错误:
c1 = new PdfPCell(new Phrase("182-432-23-23",smallFontBold));
c1.setBorderColor(Color.GRAY);
错误:
The method setBorderColor(Color) in the type Rectangle is not applicable for the arguments (int)