mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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();
|
Toast.makeText(getActivity(), "documentProcessor is null", Toast.LENGTH_LONG).show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Bitmap[] bitmaps = new Bitmap[results.size()];
|
||||||
for (CapturedData capturedData : this.results) {
|
for (int i = 0; i < results.size(); i++) {
|
||||||
this.documentProcessor.addNewPageToLast(capturedData.getBitmap());
|
bitmaps[i] = results.get(i).getBitmap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.documentProcessor.addNewPagesToLast(bitmaps);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user