android.content.ComponentCallbacks2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.content;
public interface ComponentCallbacks2
extends android.content.ComponentCallbacks
{
public abstract void onTrimMemory(int level);
public static final int TRIM_MEMORY_COMPLETE = 80;
public static final int TRIM_MEMORY_MODERATE = 60;
public static final int TRIM_MEMORY_BACKGROUND = 40;
public static final int TRIM_MEMORY_UI_HIDDEN = 20;
public static final int TRIM_MEMORY_RUNNING_CRITICAL = 15;
public static final int TRIM_MEMORY_RUNNING_LOW = 10;
public static final int TRIM_MEMORY_RUNNING_MODERATE = 5;
}