任何人都知道如何修复此错误?构造函数StarBitmap(Bitmap,boolean,int)不可见。它发生在这段代码的第二行:
Bitmap bm = BitmapFactory.decodeResource(context.getResources(), R.drawable.euro_cert_black);
StarBitmap starbitmap = new StarBitmap(bm, false, 408);
我不知道如何解决这个问题。 我检查了是否有导入StarBitmap并且有。 尝试从我找到的一些答案改为getResource(),但仍然没有。 我尝试将公共添加到StarBitmap构造函数中,但仍然没有。
我有这段代码的班级是public class Print{}
并且StarBitmap和consctuctor是这样的:
public class StarBitmap
{
int[] pixels;
int height;
int width;
boolean dithering;
byte[] imageData;
public StarBitmap(Bitmap picture, boolean supportDithering, int maxWidth)
{
if(picture.getWidth() > maxWidth)
{
ScallImage(picture, maxWidth);
}
else
{
height = picture.getHeight();
width = picture.getWidth();
pixels = new int[height * width];
for(int y=0;y < height; y++)
{
for(int x=0;x<width; x++)
{
pixels[PixelIndex(x,y)] = picture.getPixel(x, y);
}
}
//picture.getPixels(pixels, 0, width, 0, 0, width, height);
}
dithering = supportDithering;
imageData = null;
}
顺便提一下,StarBitmap来自Star Micronics便携式打印机的sdk
答案 0 :(得分:2)
您已使用构造函数starBitmap()的默认可见性。默认可见性启用同一包中的可访问性。但是如果你想要访问不同包中的成员,它应该是公开的。请参阅链接以获取更多信息In Java, difference between default, public, protected, and private