ActivityManagerCompat

Added in 1.1.0

public final class ActivityManagerCompat


Helper for accessing features in android.app.ActivityManager in a backwards compatible fashion.

Summary

Public methods

static boolean
@ReplaceWith(expression = "activityManager.isLowRamDevice()")
isLowRamDevice(@NonNull ActivityManager activityManager)

This method is deprecated.

Call isLowRamDevice directly.

Public methods

isLowRamDevice

Added in 1.1.0
Deprecated in 1.14.0-alpha01
@ReplaceWith(expression = "activityManager.isLowRamDevice()")
public static boolean isLowRamDevice(@NonNull ActivityManager activityManager)

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.