Show storage usage

This commit is contained in:
M66B
2021-05-24 07:49:55 +02:00
parent 8fa6941d45
commit 4031b3d671
2 changed files with 7 additions and 4 deletions

View File

@@ -1052,7 +1052,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
Helper.humanReadableByteCount(data.nheap)));
tvStorageUsage.setText(getString(R.string.title_advanced_storage_usage,
Helper.humanReadableByteCount(data.available),
Helper.humanReadableByteCount(data.total - data.available),
Helper.humanReadableByteCount(data.total),
Helper.humanReadableByteCount(data.used)));