我是 Qt android 应用程序开发的新手。我想打开相机拍照并使用QtAndroid和JNIObject获取图像的路径。
例如,
Intent capture_image_intent = new Intent();
capture_image_intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(capture_image_intent, 101);
我想使用 Qandroidjniobject 在我的 Qt android 应用程序中启动相机。所以,请帮助我在qt中编写代码。