我怎样才能跳过机器人 CAMERA_ACTIVITY 创建的 activity?
How can I skip an activity created by androids CAMERA_ACTIVITY?
我正在使用 androids 默认相机捕获,然后使用裁剪库拍摄照片,然后将其裁剪为正方形以显示在下一个布局上,图片存储在设备上,并在数据库中创建记录。
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
camera_intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(image_file));
startActivityForResult(camera_intent, CAM_REQUEST);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode==2 || requestCode == 6709) {
if (resultCode == RESULT_CANCELED) {
} else if (resultCode == RESULT_OK) {
//Crop.pickImage(this);
if (requestCode == Crop.REQUEST_CROP && resultCode == RESULT_OK) {
//doSomethingWithCroppedImage(outputUri);
setResult(resultCode);
} else {
File cropme = new File(tempPicture[4]);
if (Build.VERSION.SDK_INT >= 24) {
try {
Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure");
m.invoke(null);
} catch (Exception e) {
e.printStackTrace();
}
}
new Crop(Uri.fromFile(cropme)).output(Uri.fromFile(cropme)).asSquare().start(this);
}
}
}
问题是如下所示的图片确认页面是多余的,如果我能够将其删除,将为用户节省大量时间。
我怎样才能编辑默认的相机捕获 activity 或在线使用其他相机模板?
我想让流程尽可能高效,如果有更好的方法请告诉我。
The problem is there is a picture confirmation page as shown below that's redundant and will save the user a lot of time if I'm able to remove it.
不要使用 ACTION_IMAGE_CAPTURE
。直接使用相机 API(例如,android.hardware.Camera
、android.hardware.camera2.*
)或通过包装它们的库(例如,CameraKit-Android、Fotoapparat)。
How can I go about either editing the default camera capture activity
大约有 10,000 Android 种设备型号。它们附带了数十种(如果不是数百种)不同的相机应用程序。另外,用户自己安装。其中任何一个都可以回复 ACTION_IMAGE_CAPTURE
。他们中的任何一个是否有确认屏幕取决于这些应用程序的开发者,而不是你。如果您想完全控制相机体验,请不要将拍照委托给 ACTION_IMAGE_CAPTURE
,而是编写您自己的相机代码。
我正在使用 androids 默认相机捕获,然后使用裁剪库拍摄照片,然后将其裁剪为正方形以显示在下一个布局上,图片存储在设备上,并在数据库中创建记录。
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
camera_intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(image_file));
startActivityForResult(camera_intent, CAM_REQUEST);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode==2 || requestCode == 6709) {
if (resultCode == RESULT_CANCELED) {
} else if (resultCode == RESULT_OK) {
//Crop.pickImage(this);
if (requestCode == Crop.REQUEST_CROP && resultCode == RESULT_OK) {
//doSomethingWithCroppedImage(outputUri);
setResult(resultCode);
} else {
File cropme = new File(tempPicture[4]);
if (Build.VERSION.SDK_INT >= 24) {
try {
Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure");
m.invoke(null);
} catch (Exception e) {
e.printStackTrace();
}
}
new Crop(Uri.fromFile(cropme)).output(Uri.fromFile(cropme)).asSquare().start(this);
}
}
}
问题是如下所示的图片确认页面是多余的,如果我能够将其删除,将为用户节省大量时间。
我怎样才能编辑默认的相机捕获 activity 或在线使用其他相机模板?
我想让流程尽可能高效,如果有更好的方法请告诉我。
The problem is there is a picture confirmation page as shown below that's redundant and will save the user a lot of time if I'm able to remove it.
不要使用 ACTION_IMAGE_CAPTURE
。直接使用相机 API(例如,android.hardware.Camera
、android.hardware.camera2.*
)或通过包装它们的库(例如,CameraKit-Android、Fotoapparat)。
How can I go about either editing the default camera capture activity
大约有 10,000 Android 种设备型号。它们附带了数十种(如果不是数百种)不同的相机应用程序。另外,用户自己安装。其中任何一个都可以回复 ACTION_IMAGE_CAPTURE
。他们中的任何一个是否有确认屏幕取决于这些应用程序的开发者,而不是你。如果您想完全控制相机体验,请不要将拍照委托给 ACTION_IMAGE_CAPTURE
,而是编写您自己的相机代码。