use of android.app.ActivityManager.MemoryInfo in project android_frameworks_base by crdroidandroid.
the class SurfaceCompositionMeasuringActivity method getMemoryInfo.
private MemoryInfo getMemoryInfo() {
ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
MemoryInfo memInfo = new MemoryInfo();
activityManager.getMemoryInfo(memInfo);
return memInfo;
}
use of android.app.ActivityManager.MemoryInfo in project platform_frameworks_base by android.
the class SurfaceCompositionMeasuringActivity method getMemoryInfo.
private MemoryInfo getMemoryInfo() {
ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
MemoryInfo memInfo = new MemoryInfo();
activityManager.getMemoryInfo(memInfo);
return memInfo;
}
use of android.app.ActivityManager.MemoryInfo in project platform_frameworks_base by android.
the class SurfaceCompositionMeasuringActivity method updateSystemInfo.
private void updateSystemInfo(int pixelFormat) {
int visibleCnt = 0;
for (int i = 0; i < mViews.size(); ++i) {
if (mViews.get(i).getVisibility() == View.VISIBLE) {
++visibleCnt;
}
}
MemoryInfo memInfo = getMemoryInfo();
String platformName = mAndromeda ? "Andromeda" : "Android";
String info = platformName + ": available " + getReadableMemory(memInfo.availMem) + " from " + getReadableMemory(memInfo.totalMem) + ".\nVisible " + visibleCnt + " from " + mViews.size() + " " + getPixelFormatInfo(pixelFormat) + " surfaces.\n" + "View size: " + mWidth + "x" + mHeight + ". Refresh rate: " + DOUBLE_FORMAT.format(mRefreshRate) + ".";
mSystemInfoView.setText(info);
}
use of android.app.ActivityManager.MemoryInfo in project android_frameworks_base by DirtyUnicorns.
the class RecentsView method getTotalMemory.
public long getTotalMemory() {
MemoryInfo memInfo = new MemoryInfo();
mAm.getMemoryInfo(memInfo);
long totalMem = memInfo.totalMem;
return totalMem;
}
use of android.app.ActivityManager.MemoryInfo in project android_frameworks_base by DirtyUnicorns.
the class RecentsView method updateMemoryStatus.
private void updateMemoryStatus() {
if (mMemText.getVisibility() == View.GONE || mMemBar.getVisibility() == View.GONE)
return;
MemoryInfo memInfo = new MemoryInfo();
mAm.getMemoryInfo(memInfo);
int available = (int) (memInfo.availMem / 1048576L);
int max = (int) (getTotalMemory() / 1048576L);
mMemText.setText(String.format(getResources().getString(R.string.recents_free_ram)) + ": " + String.valueOf(available) + "MB");
mMemBar.setMax(max);
mMemBar.setProgress(available);
}
Aggregations