Change compass listener and optimize accelerometer listener.

This commit is contained in:
Bryce Curtis
2010-08-20 10:59:45 -05:00
parent e5bbbbe35c
commit 27c4de6aa0
7 changed files with 342 additions and 295 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ public class DroidGap extends Activity {
private Device gap;
private GeoBroker geo;
private AccelBroker accel;
private AccelListener accel;
private CameraLauncher launcher;
private ContactManager mContacts;
private FileUtils fs;
@@ -225,7 +225,7 @@ public class DroidGap extends Activity {
{
callbackServer = new CallbackServer();
gap = new Device(appView, this);
accel = new AccelBroker(appView, this);
accel = new AccelListener(appView, this);
launcher = new CameraLauncher(appView, this);
mContacts = new ContactManager(appView, this);
fs = new FileUtils(appView);