mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
デバッグ処理実装
This commit is contained in:
parent
6d6f4790a0
commit
080e86d05d
|
@ -180,10 +180,12 @@ public class ScannerDataManagerStubFragment extends Fragment {
|
|||
Toast.makeText(getActivity(), "documentProcessor is null", Toast.LENGTH_LONG).show();
|
||||
return;
|
||||
}
|
||||
|
||||
for (CapturedData capturedData : this.results) {
|
||||
this.documentProcessor.addNewPageToLast(capturedData.getBitmap());
|
||||
Bitmap[] bitmaps = new Bitmap[results.size()];
|
||||
for (int i = 0; i < results.size(); i++) {
|
||||
bitmaps[i] = results.get(i).getBitmap();
|
||||
}
|
||||
|
||||
this.documentProcessor.addNewPagesToLast(bitmaps);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user