我正在按照这个项目将 Zbar 扫描仪集成到我的 android 应用程序中 - https://github.com/DushyanthMaguluru/ZBarScanner。当相机出现时,我希望将图像放在扫描仪上。我知道如何在 iOS 中通过向扫描仪添加子视图来执行此操作 -
UIImageView * image2 = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
image2.image = [UIImage imageNamed:@"scan.png"];
image2.userInteractionEnabled = YES;
[reader.view addSubview:image2];
有没有办法为android做到这一点?