- start MapWorkers at end of init
- check for screensize > 0 in updateMap
This commit is contained in:
Hannes Janetzek
2012-09-18 16:50:56 +02:00
parent e54e6e1c46
commit 6ee2a85e12
5 changed files with 53 additions and 39 deletions

View File

@@ -18,7 +18,7 @@ package org.oscim.utils;
* An abstract base class for threads which support pausing and resuming.
*/
public abstract class PausableThread extends Thread {
private boolean mPausing;
private boolean mPausing = true;
private boolean mShouldPause;
/**