Ich habe Probleme, Aufgaben von der Hauptmethode "Aktivitäten OnCreate" in eine andere Klasse zu verlagern, um das schwere Heben durchzuführen.
Wenn ich versuche, getSystemService aus der Nicht-Aktivitätsklasse aufzurufen, wird eine Ausnahme ausgelöst.
Jede Hilfe wäre sehr dankbar :)
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;
}
}
Antworten:
Sie müssen Ihren Kontext an Ihre fyl-Klasse übergeben.
Eine Lösung besteht darin, einen Konstruktor wie diesen für Ihre
fyl
Klasse zu erstellen :Erstellen Sie also in Ihrer Aktivitätsklasse das Objekt von fyl in folgender
onCreate
Funktion:quelle
lmt
Klasse nicht ausgeführt wird, hat siefly
keinen KontextgetSysytemService()
akzeptiert nurString
als Parameter. Daher können Sie ihm keinen Kontext übergeben. Wie komme ich darum herum? @ HuntBluetoothManager
,ActivityManager
etc.) werden ebenfalls konstruiert , dass Art und Weise (nicht unbedingt einen ÜbergangActivity
Kontext zu ihrem Konstruktor) und das ist , warum sie Komponenten in Anwendungsbereich zugreifen können.Sie können dies tun:
quelle
ArrayAdapter
.Eine Möglichkeit, dies zu umgehen, besteht darin, eine statische Klasse für Instanzen zu erstellen. Ich habe es oft in AS3 verwendet. Ich habe auch in der Android-Entwicklung großartig für mich gearbeitet.
Config.java
MyApp.java
Sie können dann auf den Kontext zugreifen oder ihn verwenden
Config.context
quelle
private static MyApp _context;
public static MyApp getContext() { return _context; }
... in onCreate:_context = this;
in onStop:_context = null;
... Verwendung :MyApp.getContext()
.Ich weiß nicht, ob das helfen wird, aber ich habe Folgendes getan:
quelle
Für einige Nicht-Aktivitätsklassen wie Worker erhalten Sie bereits ein Context-Objekt im öffentlichen Konstruktor.
Sie können dies einfach verwenden, z. B. in einer privaten Kontextvariablen in der Klasse (z. B.) speichern
mContext
und dann beispielsweisequelle