get heap size via Large Memory Class - Android Hardware

Android examples for Hardware:Memory

Description

get heap size via Large Memory Class

Demo Code


//package com.java2s;

import android.app.ActivityManager;

import android.content.Context;

public class Main {
    /**/*  www.  j  av a2 s.  c o m*/
     * @param context
     * @return
     */
    public static int getLargeMemoryClass(Context context) {
        ActivityManager manager = (ActivityManager) context
                .getSystemService(Context.ACTIVITY_SERVICE);
        int heapSize = manager.getLargeMemoryClass();
        return heapSize;
    }
}

Related Tutorials