added a temp widget icon

This commit is contained in:
2011-01-31 05:38:16 +00:00
parent 1ad7485edb
commit 1e5667d018
5 changed files with 7 additions and 7 deletions

View File

@@ -43,6 +43,8 @@ public class LocationService extends Service implements LocationListener {
private WakeLock mWakeLock;
private Location mLocation;
private int mStartId;
private Notification mNotification;
private NotificationManager mNotificationManager;
/**
* this runnable will be qued when the service is created. this will be used as a fail safe
@@ -55,10 +57,6 @@ public class LocationService extends Service implements LocationListener {
}
};
private Notification mNotification;
private NotificationManager mNotificationManager;
/**
* a convince method for starting the service
* @param context
@@ -237,4 +235,4 @@ public class LocationService extends Service implements LocationListener {
mLocationManager.requestLocationUpdates(LocationManager.PASSIVE_PROVIDER, 0, 0, this);
}
}
}