private void AndroidLowMemoryPoll() { if (settings.GetLowMemory() && OnLowMemory != null) { OnLowMemory(this, new EventArgs()); } }
/// <summary> /// Gets if the system is low on memory. /// </summary> /// <returns><c>true</c>, if low memory warning was gotten, <c>false</c> otherwise.</returns> public bool GetLowMemory() { return(settings.GetLowMemory()); }