I tried to run this code by both android emulator and jvm. On JVM it sleeps 33-34 ms as it should be, however on android it is 68-85ms. Why is it so inaccurate ?

Thank you for your help.

package android.apps.td;

public class Logic implements Runnable {

private long frame_time = 1000000000/30;
private long offset = 0;
private long timestamp = 0;

public void run(){
    long step;
    while(true){
        step = System.nanoTime();
        if((offset = (step - timestamp)) > frame_time){
            System.out.println("FRAME     "+(step - timestamp)/1000000+" ms");
            timestamp = step;
            update();
            render();
            repaint();
            try {
                Thread.sleep(frame_time/1000000+1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }else{
            try {
                System.out.println("Sleep ["+((frame_time-offset)/1000000+1)+" ms]");

                Thread.sleep(((frame_time-offset)/1000000+1));
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

private void update() {
}

private void render() {
}

private void repaint() {
}

}

link|improve this question

1  
Because Android isn't an RTOS, and an emulator, even less so. – Dave Newton Dec 21 '11 at 13:42
Thanks for quick response, what should i use insted for fixed-time execution ? – jellyfication Dec 21 '11 at 13:49
An RTOS. It's an emulator; what do you want? It's not as fast as running a real machine. – Dave Newton Dec 21 '11 at 13:59
On real machine im getting fair result. thanks for help – jellyfication Dec 21 '11 at 14:17
If you need a better emulator try running an android-x86 machine in VirtualBox or VMWare. It's the Android OS compiled for the x86 architecture and is much faster than the emulator that comes with the SDK. – jjiceman Dec 22 '11 at 1:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.