mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
まちがえてrequireActivityを使っていたので修正
This commit is contained in:
parent
0bf6b3fa1a
commit
8e97dd6972
|
@ -68,7 +68,7 @@ public class ScannerDataManagerStubFragment extends Fragment {
|
|||
view.findViewById(R.id.button_call_camera).setOnClickListener(v -> {
|
||||
Log.d("ScannerDataManagerStubFragment", "button_call_camera clicked");
|
||||
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
|
||||
if (takePictureIntent.resolveActivity(requireActivity().getPackageManager()) != null) {
|
||||
if (takePictureIntent.resolveActivity(getActivity().getPackageManager()) != null) {
|
||||
Log.d("ScannerDataManagerStubFragment", "camera available");
|
||||
cameraLauncher.launch(takePictureIntent);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user