Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道设备上剩余多少内部空间,但“内部”空间没有外部 SD 卡。
此代码用于外部 SD 空间。
如何检查-android-device-on-mini-sd-card 上的可用空间
有人知道如何获得免费的内部空间吗?
提前致谢。
您链接到的代码就是您所需要的。但是,而不是:
StatFs stat = new StatFs(Environment.getExternalStorageDirectory().getPath());
使用类似的东西:
StatFs stat = new StatFs(getFilesDir().getPath());