(Runnable runnable)
| 95 | private static Handler sAppHandler = null; |
| 96 | |
| 97 | public static void runOnUIThread(Runnable runnable) { |
| 98 | runOnUIThread(runnable, 0); |
| 99 | } |
| 100 | |
| 101 | public static void runOnUIThread(Runnable runnable, long delay) { |
| 102 | if (sAppHandler == null) { |
no test coverage detected