現在の位置座標を経度と緯度で取得しようとしています。ここに私のコードは、これまでのところです:アンドロイドで現在の位置(座標)を取得していますか?
あまりにpublic class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
MyLocationListener myLocationListener = new MyLocationListener();
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, myLocationListener);
}
}
と、このクラス:
public class MyLocationListener implements LocationListener {
private static final String TAG = "COORDINATES: ";
@Override
public void onLocationChanged(Location location) {
if(location != null){
Log.e(TAG, "Latitude: " + location.getLatitude());
Log.e(TAG, "Longitude: " + location.getLongitude());
}
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
}
私はエミュレータでアプリを実行すると、私はいずれかを得ることはありません座標付きのログメッセージ。助言がありますか?
エミュレータは電話のようには機能しません。彼らはいくつかのツールと設定で地理座標を模倣することができますが、GPSやネットワークを持っていません。[リンクをクリックしてください](http://stackoverflow.com/questions/2279647/how-to-emulate-gps-location-in -the-android-emulator) –