Thread.Sleep() calls (Android)

Thread.sleep() calls on the main thread should always be avoided because they cause the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.

Emerge suggests you remove any Thread.sleep calls on the main thread.

425