Android - 在模拟器中没有信息的情况下启动 CameraIntent activity 结果崩溃

Android - Start CameraIntent activity for result crash without informations in emulator

我创建了一个使用相机的应用程序。所以我有一个以 activity 开头的 CameraIntent。 startActivity(cameraIntent) 在我拥有的所有设备和模拟器上都能正常工作,但是当我使用 startActivityForResult(cameraIntent, 1) 时,我在 Pixel 2 和 Pixel 3XL 模拟器上遇到 CameraApp 崩溃 API 29. 我在我的真实华为设备和另一个模拟器 (nexus API 30) 上试过,它工作正常。 我在 logcat 中找不到任何信息,所以我不知道去哪里寻找错误的原因。我猜是 API 29(或 Pixel 模拟器?),但我还没有找到有关此问题的任何信息。

编辑:我尝试了很多版本和设备,但这个错误只发生在 API29 的 Pixel 2 上。有人知道为什么吗?

这是我用来复制错误的应用代码: MainActivity.kt


    private lateinit var button: Button

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        button = findViewById(R.id.button)

        button.setOnClickListener {
            val cameraIntent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)

            if (packageManager.resolveActivity(cameraIntent, PackageManager.MATCH_DEFAULT_ONLY) == null) {
                Toast.makeText(this, "no camera", Toast.LENGTH_SHORT).show()
                return@setOnClickListener
            }

            startActivityForResult(cameraIntent, 1)
        }

    }

activity_main.xml(只有一个简单的按钮)

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

(对不起我的英语。) 感谢您的帮助!

我找到了答案:在 API 29 上,需要在应用程序内部授予相机授权 启动相机意图。所以我在 AndroidManifest.xml 中添加 <uses-permission android:name="android.permission.CAMERA" /> 并在启动相机意图之前请求相机许可。

确保清单文件中附加了相机权限,此处用户授予的权限是权限代码:

<uses-permission android:name="android.permission.CAMERA"

如果启用多重权限,那么您更愿意阅读文档并使用此依赖项:

implementation 'com.karumi:dexter:6.2.1'