Loading src/com/android/settings/applications/ManageApplications.java +6 −4 Original line number Diff line number Diff line Loading @@ -383,10 +383,12 @@ public class ManageApplications extends Fragment implements if (mFilter == FILTER_APPS_SDCARD) { if (mContainerService != null) { try { if (Environment.getSecondaryStorageDirectory() != null) { final long[] stats = mContainerService.getFileSystemStats( Environment.getSecondaryStorageDirectory().getPath()); mTotalStorage = stats[0]; mFreeStorage = stats[1]; } } catch (RemoteException e) { Log.w(TAG, "Problem in container service", e); } Loading Loading
src/com/android/settings/applications/ManageApplications.java +6 −4 Original line number Diff line number Diff line Loading @@ -383,10 +383,12 @@ public class ManageApplications extends Fragment implements if (mFilter == FILTER_APPS_SDCARD) { if (mContainerService != null) { try { if (Environment.getSecondaryStorageDirectory() != null) { final long[] stats = mContainerService.getFileSystemStats( Environment.getSecondaryStorageDirectory().getPath()); mTotalStorage = stats[0]; mFreeStorage = stats[1]; } } catch (RemoteException e) { Log.w(TAG, "Problem in container service", e); } Loading