FileDocCategorySizeDatePackage
ActivityManagerCompat.javaAPI DocAndroid 5.1 API1628Thu Mar 12 22:22:56 GMT 2015android.support.v4.app

ActivityManagerCompat

public final class ActivityManagerCompat extends Object
Helper for accessing features in {@link android.app.ActivityManager} introduced after API level 4 in a backwards compatible fashion.

Fields Summary
Constructors Summary
private ActivityManagerCompat()

    
Methods Summary
public static booleanisLowRamDevice(android.app.ActivityManager am)
Returns true if this is a low-RAM device. Exactly whether a device is low-RAM is ultimately up to the device configuration, but currently it generally means something in the class of a 512MB device with about a 800x480 or less screen. This is mostly intended to be used by apps to determine whether they should turn off certain features that require more RAM.

        if (Build.VERSION.SDK_INT >= 19) {
            return ActivityManagerCompatKitKat.isLowRamDevice(am);
        }
        return false;