Android 12(SDK > 29)ACTION_IMAGE_CAPTURE 的 Extra_Output 不起作用

问题描述 投票:0回答:2

我想用相机拍照,然后将其发送到另一个活动。一切都可以在模拟器上运行,没有任何问题。但当我在真实设备上尝试该应用程序时,我总是在 ActivityResultLauncher 中收到状态代码 0,并且不会调用 If 分支。另一方面,在模拟器上我得到 -1 并且调用第二个活动的意图已启动。我做错了什么?

我在真实设备上使用Android 12(SKD 31)

我现在也用模拟器 skd > 29 -> 测试了同样的问题。一旦我在相机视图中按下图像的“确定”按钮,Android 就会将我带回 MainActivity,而不是如预期和期望的那样返回 AddNewPlace 活动。调试器/logcat 中没有错误。一旦我使用某个版本的 SDK < 29 everything works without problems. I think it has something to do with the FileProvide or with the EXTRA_OUTPUT in the intent.

清单.xml

enter image description here

这个也行不通

enter image description here

相机代码:

      File file = new File(Environment.getExternalStorageDirectory(),
                        UUID.randomUUID()+".jpg");

      outputFileUri = FileProvider.getUriForFile(MainActivity.this,BuildConfig.APPLICATION_ID + ".fileprovider",file);
      Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
      intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
      startActivityIntent.launch(intent);




       ActivityResultLauncher<Intent> startActivityIntent = registerForActivityResult(
        new ActivityResultContracts.StartActivityForResult(),
        new ActivityResultCallback<ActivityResult>() {
            @Override
            public void onActivityResult(ActivityResult result) {
                if(result.getResultCode() == RESULT_OK) // 0 on real device , -1 on Emulator
                {
                    if(result.getData() != null)

                    {
                        Log.e("FILE : ", outputFileUri.toString());
                        
                        Intent intent = new Intent(MainActivity.this,AddNewPlace.class);
                        intent.putExtra("File",outputFileUri.toString());

                        startActivity(intent);
                    }
                }

            }
        });

编辑

更新了代码,也不起作用。我需要改变一些东西吗? 文件提供者?

File file  = 
MainActivity.this.getExternalFilesDir(UUID.randomUUID()+".jpg");
android android-intent android-service android-camera
2个回答
16
投票

在清单文件中添加这些行

<queries>
        <intent>
            <action android:name="android.media.action.IMAGE_CAPTURE" />
        </intent>
    </queries>

0
投票

你怎么知道这个的。文件在哪里? 谢谢

© www.soinside.com 2019 - 2024. All rights reserved.