Back to project page egotrip.
The source code is released under:
Apache License
If you think the Android project egotrip listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.myegotrip.egotrip; /*from www . j ava 2s . c o m*/ import android.os.Handler; import android.os.Message; public class ControlHandler extends Handler { private ControlWindow act; public ControlHandler(ControlWindow act) { this.act = act; } public void handleMessage(Message msg) { act.refreshDisplay(); } };