()
| 31 | } |
| 32 | |
| 33 | public static void renderAll() { |
| 34 | synchronized (LOCK) { |
| 35 | for (int activeOverlaysSize = activeOverlays.length, i = activeOverlaysSize - 1; i >= 0; i--) { |
| 36 | Overlay activeOverlay = activeOverlays[i]; |
| 37 | if (activeOverlay == null) |
| 38 | continue; |
| 39 | activeOverlay.render(); |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public void displayMessage(String title, String subtitle) { |