-
在AndroidManifest.xml文件中添加相机权限和存储权限:
<uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-
创建一个Button组件用于启动系统相机:
<Button android:id="@+id/btnOpenCamera" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Open Camera" />
-
在Activity中获取按钮组件并添加点击事件:
Button btnOpenCamera = findViewById(R.id.btnOpenCamera); btnOpenCamera.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { openCamera(); } });
-
创建一个方法openCamera()来启动系统相机:
private void openCamera() { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, 100); }
-
在onActivityResult()方法中获取相机拍摄的照片并保存到指定位置:
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 100 && resultCode == RESULT_OK) { Bitmap photo = (Bitmap) data.getExtras().get("data"); String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/CameraApp/"; File dir = new File(path); if (!dir.exists()) { dir.mkdirs(); } File file = new File(path + "photo.jpg"); try { FileOutputStream fos = new FileOutputStream(file); photo.compress(Bitmap.CompressFormat.JPEG, 100, fos); fos.close(); Toast.makeText(this, "Photo saved at: " + file.getAbsolutePath(), Toast.LENGTH_SHORT).show(); } catch (IOException e) { e.printStackTrace(); } } }
通过以上步骤,您可以实现在Android应用中调用系统相机拍摄照片并保存到指定位置。请记得在AndroidManifest.xml中添加相应的权限,并确保您的应用在运行时动态请求相机和存储权限。
要实现在Android应用中调用系统相机并保存拍摄的照片到特定位置,可以按照以下步骤进行操作:
- 添加相机权限到AndroidManifest.xml文件中:
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- 在需要调用相机的Activity中添加以下代码:
private static final int REQUEST_IMAGE_CAPTURE = 1;
private String currentPhotoPath;
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// 确保有能够处理拍照的Activity
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
ex.printStackTrace();
}
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.android.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
}
}
}
private File createImageFile() throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName,
".jpg",
storageDir
);
currentPhotoPath = image.getAbsolutePath();
return image;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
// 图片已保存到指定位置(currentPhotoPath)
// 可以将currentPhotoPath保存到数据库或显示在ImageView中
}
}
- 添加FileProvider至AndroidManifest.xml文件中:
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.example.android.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
- 创建res/xml/file_paths.xml文件并添加以下内容:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-files-path name="my_images" path="Pictures" />
</paths>
- 最后,在调用系统相机的地方调用dispatchTakePictureIntent()方法即可。拍摄的照片将会保存在应用的私有目录下的Pictures文件夹中。
需要注意的是,以上方法适用于Android 7.0及以上版本。在Android 6.0及以下版本,由于权限机制的变化,可能需要做额外处理。
发布者:luotuoemo,转转请注明出处:https://www.jintuiyun.com/155906.html