我在上下搜索了一种方法,而我所能找到的最好方法就是将屏幕截图保存到SD卡中。我要做的是onclick()
,获取当前活动的屏幕快照并将其保存在内部存储中,以便用户可以根据需要在自己的画廊中查看它。
任何帮助将不胜感激。
答案 0 :(得分:1)
在此处发布整个代码比较困难。我认为您应该遵循一些教程。
根据您的要求,我需要使用您的应用程序截屏,并将其存储在设备SD卡中。
为此,您应该先为清单添加适当的权限,
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
并将以下代码添加到活动中:
private void takeScreenshot() {
Date now = new Date();
android.text.format.DateFormat.format("yyyy-MM-dd_hh:mm:ss", now);
try {
// image naming and path to include sd card appending name you choose for file, you can change it to your path
String mPath = Environment.getExternalStorageDirectory().toString() + "/" + now + ".jpg";
// create bitmap screen capture
View v1 = getWindow().getDecorView().getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
File imageFile = new File(mPath);
FileOutputStream outputStream = new FileOutputStream(imageFile);
int quality = 100;
bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outputStream);
outputStream.flush();
outputStream.close();
openScreenshot(imageFile);
} catch (Throwable e) {
e.printStackTrace();
}
}
此代码将打开生成的图像(屏幕截图):
private void openScreenshot(File imageFile) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(imageFile);
intent.setDataAndType(uri, "image/*");
startActivity(intent);
}
这就是我为项目所做的工作。有时,这可能无法满足您的要求。如果不满意,请遵循以下教程,谢谢
参考列表:http://www.androhub.com/take-a-screenshot-programmatically-in-android/
http://devdeeds.com/take-screenshot-programmatically/
https://www.viralandroid.com/2016/01/how-to-take-screenshot-programmatically-in-android.html
如果要检查SD卡是否可用。这是方法。如果SD卡不可用,则可以使用内部存储器来存储图像。
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
Boolean isSDSupportedDevice = Environment.isExternalStorageRemovable();
if(isSDSupportedDevice && isSDPresent)
{
// yes SD-card is present
}
else
{
// SD-card not available
}