I use iText
library to create pdf, in Java Project setBorderColor
work, I use:
c1 = new PdfPCell(new Phrase("182-432-23-23",smallFontBold));
c1.setBorderColor(BaseColor.DARK_GRAY);
but in Android Project in this code I have error:
c1 = new PdfPCell(new Phrase("182-432-23-23",smallFontBold));
c1.setBorderColor(Color.GRAY);
error:
The method setBorderColor(Color) in the type Rectangle is not applicable for the arguments (int)