我知道这个问题已经回答了,但是我想得到更好的解释,因为我尝试实现它,但是它似乎没有用。
我有以下代码:
private void takeScreenshot() {
ContextWrapper cw = new ContextWrapper(getApplicationContext());
//Get screenshot
View v1 = getWindow().getDecorView().getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
Date fileName = new Date();
android.text.format.DateFormat.format("yyyy-MM-dd_hh:mm:ss", fileName);
File directory = cw.getDir("imageDir", Context.MODE_PRIVATE);
File image = new File(directory,fileName+".jpg");
try {
FileOutputStream fos = new FileOutputStream(image);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
} catch (Exception e) {
e.printStackTrace();
}
}
我想发生的事情是截取屏幕截图,将其保存到具有我的应用程序名称的文件夹中,并使其可被android手机的图库读取。我的代码没有执行以上任何操作。使用文件资源管理器时,看不到带有应用程序名称的文件夹,该文件夹也未出现在图库中。似乎它甚至不保存图像。您能告诉我我的代码有什么问题吗?
答案 0 :(得分:0)
下面的代码创建一个名为“ AppName”的目录,然后将屏幕快照存储在该目录中。画廊也可以阅读。如果您没有WRITE_EXTERNAL_STORAGE
权限,则您的代码(以及下面的代码)将无法工作。
private static File getOutputMediaFile() {
// To be safe, you should check that the SDCard is mounted
// using Environment.getExternalStorageState() before doing this.
File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES), "MyCameraApp"); //change to your app name
// This location works best if you want the created images to be shared
// between applications and persist after your app has been uninstalled.
// Create the storage directory if it does not exist
if (!mediaStorageDir.exists()) {
if (!mediaStorageDir.mkdirs()) {
Log.d("MyCameraApp", "failed to create directory");
return null;
}
}
// Create a media file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
File mediaFile;
mediaFile = new File(mediaStorageDir.getPath() + File.separator +
"IMG_" + timeStamp + ".jpg");
return mediaFile;
}
private void takeScreenshot(){
//Get screenshot
View v1 = getWindow().getDecorView().getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
File pictureFile = getOutputMediaFile();
if (pictureFile == null){
Log.d(TAG, "error creating media file, check storage permission");
return;
}
try {
FileOutputStream fos = new FileOutputStream(pictureFile);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
bitmap.recycle();
} catch (FileNotFoundException e) {
Log.d(TAG, "File not found" + e.getMessage());
} catch (Exception e) {
e.printStackTrace();
}
}
确保添加
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
显示在清单上,并使用
寻求运行时权限ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},
00);
代码在getOutputMediaFile()
方法中查找和/或创建一个具有应用程序名称的目录,然后在该目录中返回一个以时间戳为名称的文件。然后,在takeScreenshot()
方法中,屏幕截图bitmap
转换为byte[]
,并且使用fileOutputStream
将此byte[]
写入{{ 1}}。
结果是将屏幕快照保存到目录“ MyCameraApp”中的图片库(更改为应用程序的名称)
希望这会有所帮助!