Example usage for android.app Fragment performLowMemory

List of usage examples for android.app Fragment performLowMemory

Introduction

In this page you can find the example usage for android.app Fragment performLowMemory.

Prototype

void performLowMemory() 

Source Link

Usage

From source file:android.app.FragmentManager.java

public void dispatchLowMemory() {
    if (mAdded != null) {
        for (int i = 0; i < mAdded.size(); i++) {
            Fragment f = mAdded.get(i);
            if (f != null) {
                f.performLowMemory();
            }/*from www.j  av  a2s.  c  o  m*/
        }
    }
}