我使用谷歌地图创建了一个应用程序来检查我的位置,并在我接近标记时提醒我。
如果我关闭这个应用程序,我创建了一个服务,从我的主要活动开始OnDestroy()方法。该服务启动并执行得非常好。但是当我再次打开应用程序时,我需要停止此服务,所以我将stopservice(intent)放在OnCreate方法中。但该服务不会停止并不断向我发送通知。
我的服务:
public class ServiceClass extends Service{
private ArrayList<Prod> est = new ArrayList<Prod>();
private int i = 0;
private float[] distance = new float[2];
private LocationListener locationListener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
i = 0;
while (i < est.size()){
Location.distanceBetween(location.getLatitude(), location.getLongitude(), est.get(i).getLocation().latitude, est.get(i).getLocation().longitude, distance);
if (distance[0] > est.get(i).getRange()) {
} else {
Toast.makeText(ServiceClass.this, "in circle"+i, Toast.LENGTH_SHORT).show();
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(ServiceClass.this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Distance")
.setContentText("Test notification");
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(
Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, mBuilder.build());
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();
}
i++;
}
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
};
public ServiceClass() {
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
GetLocation get = new GetLocation();
get.execute();
Toast.makeText(ServiceClass.this, "Service started", Toast.LENGTH_SHORT).show();
LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
locationManager.removeUpdates(locationListener);
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
return START_STICKY;
}
在我的MapsActivity中,我在onDestroy中启动了该服务:
@Override
public void onDestroy() {
super.onDestroy();
Intent intent = new Intent(this, ServiceClass.class);
startService(intent);
}
这是工作。应用程序已关闭,服务已启动,如果我的位置已关闭,则会显示通知。
问题是,当我再次打开应用程序时,我需要取消该服务,以便在应用程序打开时不显示通知。
但是没有用。
我在onCreate中调用了stopService:
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
Intent intent = new Intent(this, ServiceClass.class);
stopService(intent);
}
不工作,服务不断向我发送通知。
我的服务在清单中声明:
<service
android:name=".Controller.ServiceClass"
android:enabled="true"
android:exported="false" >
</service>
答案 0 :(得分:1)
您可以尝试覆盖Service
的{{1}}方法,并从onDestroy()
中删除位置监听器。你也应该在那里取消通知。
将以下代码添加到您的服务中:
LocationManager