我正在使用ZXing在我的应用程序中绘制条形码。
布局是一个图像视图,用于将条形码保存在线性布局中。 imageview的高度是0dp,权重为3(下面有一个按钮,权重为1)。
我将imageview的getHeight和getWidth作为参数传递给绘制条形码方法(如下所示)。
我尝试使用全局布局监听器和view.post来等待视图的全高,但是当我在调试模式下启动时,我可以看到视图在调用绘制条形码方法时尚未完全构建。
我在片段的onCreateView和onViewCreated中尝试了这两个:
barcodeImage.post(new Runnable() {
@Override
public void run() {
int height = barcodeImage.getHeight(); // returns 1
int width = barcodeImage.getWidth(); // returns correct width
createBitmapArray(width, height);
}
});
barcodeImage.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
barcodeImage.getViewTreeObserver().removeOnGlobalLayoutListener(this);
} else {
barcodeImage.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
int height = barcodeImage.getHeight(); // returns 1
int width = barcodeImage.getWidth(); // returns correct width
createBitmapArray(width, height);
}
});
以下是绘制条形码的方法:
private Bitmap encodeAsBitmap(String contents, BarcodeFormat format, int img_width, int img_height) {
int WHITE = 0xFFFFFFFF;
int BLACK = 0xFF000000;
if (contents == null) {
return null;
}
if (format == BarcodeFormat.QR_CODE)
img_height = (int) (img_height * 1.5);
Map<EncodeHintType, Object> hints = null;
String encoding = guessAppropriateEncoding(contents);
if (encoding != null) {
hints = new EnumMap<>(EncodeHintType.class);
hints.put(EncodeHintType.CHARACTER_SET, encoding);
}
MultiFormatWriter writer = new MultiFormatWriter();
BitMatrix result;
try {
result = writer.encode(contents, format, img_width, img_height, hints);
} catch (WriterException | IllegalArgumentException | IndexOutOfBoundsException e) {
System.out.println("" + e);
return null;
}
int width = result.getWidth();
int height = result.getHeight();
int[] pixels = new int[width * height];
for (int y = 0; y < height; y++) {
int offset = y * width;
for (int x = 0; x < width; x++) {
pixels[offset + x] = result.get(x, y) ? BLACK : WHITE;
}
}
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
return bitmap;
}
等待测量权重的任何其他方式确保在绘制条形码之前构建视图(除了做一个我试图避免的postDelayed之外)?
答案 0 :(得分:0)
您是否尝试过getMeasuredHeight()?