0
スクリーンショットをコードでキャプチャしてダウンロードディレクトリに保存しましたが、保存されたファイルは表示されません。ダウンロードフォルダに保存されたファイルが見つかりません
私は電話を再起動するとダウンロードディレクトリに表示されます。
これを解決する方法をご提案ください。
ありがとうございます。
// refresh gallery
try {
MediaScannerConnection.scanFile(getActivity(), new String[]{savedImagePath}, null, new MediaScannerConnection.OnScanCompletedListener() {
@Override
public void onScanCompleted(String path, Uri uri) {
// ApplicationUtil.showToast(getActivity(), "onScanCompleted!");
}
});
} catch (Exception e) {
}
これはあなたのギャラリーをリフレッシュします:
画面を保存するための方法は、ファイルをダウンロードした後、これを試してみてください
private void takeScreenshot() {
Date now = new Date();
android.text.format.DateFormat.format("yyyy-MM-dd_hh:mm:ss", now);
try {
// String folderPath = Environment.getExternalStorageDirectory().toString() + "/" + getString(R.string.app_name);
String folderPath = Environment.getExternalStorageDirectory() + "/" + Environment.DIRECTORY_DOWNLOADS + "/";
if (!new File(folderPath).exists()) {
new File(folderPath).mkdir();
}
// image naming and path to include sd card appending name you choose for file
String mPath = folderPath + "/" + getString(R.string.app_name) + 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();
Toast.makeText(this, "Screen shot saved at " + folderPath, Toast.LENGTH_SHORT).show();
//openScreenshot(imageFile);
} catch (Throwable e) {
// Several error may come out with file handling or OOM
e.printStackTrace();
}
}
[OK]を、試してみて、あなたが知っているだろう。ありがとうございます:) –
働いて、ありがとう。 –