예제 #1
0
 private void AndroidLowMemoryPoll()
 {
     if (settings.GetLowMemory() && OnLowMemory != null)
     {
         OnLowMemory(this, new EventArgs());
     }
 }
예제 #2
0
 /// <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());
 }