215 Stimmen

Wie kann ich getSystemService in einer Nicht-Aktivitätsklasse (LocationManager) verwenden?

Ich habe Probleme mit der Auslagerung von Aufgaben aus der Hauptaktivitäten OnCreate-Methode auf eine andere Klasse, um die schwere Arbeit zu tun.

Wenn ich versuche, getSystemService von der Nicht-Activity-Klasse aufzurufen, wird eine Ausnahme ausgelöst.

Jede Hilfe wäre sehr willkommen :)

lmt.java:

package com.atClass.lmt;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import android.location.Location;

public class lmt extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        fyl lfyl = new fyl();
        Location location = lfyl.getLocation();
        String latLongString = lfyl.updateWithNewLocation(location);

        TextView myLocationText = (TextView)findViewById(R.id.myLocationText);
        myLocationText.setText("Your current position is:\n" + latLongString);
    }
}

fyl.java

package com.atClass.lmt;

import android.app.Activity;
import android.os.Bundle;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.TextView;
import android.content.Context;

public class fyl {
    public Location getLocation(){
        LocationManager locationManager;
        String context = Context.LOCATION_SERVICE;
        locationManager = (LocationManager)getSystemService(context);

        String provider = LocationManager.GPS_PROVIDER;
        Location location = locationManager.getLastKnownLocation(provider);

        return location;
    }

    public String updateWithNewLocation(Location location) {
        String latLongString;

        if (location != null){
            double lat = location.getLatitude();
            double lng = location.getLongitude();
            latLongString = "Lat:" + lat + "\nLong:" + lng;
        }else{
            latLongString = "No Location";
        }

        return latLongString;
    }
}

0voto

Ruchir Baronia Punkte 7135

Ich weiß nicht, ob das hilft, aber ich habe das gemacht:

LocationManager locationManager  = (LocationManager) context.getSystemService(context.LOCATION_SERVICE);

0voto

Ivan Lopes Punkte 128

Wenn Sie es in einem Fragment erhalten möchten, würde dies in Kotlin funktionieren:

requireActivity().getSystemService(LOCATION_SERVICE) as LocationManager

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X