Hallo allerseits,
ich habe folgenden Code aus einem Video-Tutorial 1zu1 übernommen:
Java
package meinpackage.joo;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.TextView;
public class GeoinfosActivity extends Activity {
TextView textLat;
TextView textLong;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textLat = (TextView)findViewById(R.id.textLat);
textLong = (TextView)findViewById(R.id.textLong);
LocationManager locManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
LocationListener ll = new myLocationListener();
locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, ll);
}
class myLocationListener implements LocationListener{
public void onLocationChanged(Location location) {
double pLong = location.getLongitude();
double pLat = location.getLatitude();
textLat.setText(Double.toString(pLong));
textLong.setText(Double.toString(pLat));
}
@Override
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub
}
@Override
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub
}
@Override
public void onStatusChanged(String provider, int status,
Bundle extras) {
// TODO Auto-generated method stub
}
}
}
Alles anzeigen
Die notwendige Berechtigung für die Nutzung von GPS in der Manifest-Datei:
habe ich gesetetz. Ich starte die App und erzeuge einen Emulator. Dann versuche ich dem Emulator im Fenster "Emulator-Control" (in Eclipse) Geodaten (Latitude und Longitude) zu übergeben. Bekomme keine Rückmeldung von Eclipse ob diese erfolgreich übermittelt wurden. Und dann müsste meine App diese Geodaten im Fenster anzeigen... "müsste" - passieren tut dies nämlich nicht. Was mache ich falsch ?
Grüße trust