私はGPSから位置情報を取得するマップアプリケーションを作成していますが、私はrequestLocationUpdates()から位置情報を取得していますが、GPSプロバイダからの応答はありません私はネットワークプロバイダを使用して私が場所を取得している、誰かが私が間違っている場所で助けることができるGPSからのrequestLocationUpdates()の場所が見つからない
また、私は自分のコードを最適化するためのヒントをありがとう)あまり混乱で、ここで
は私のコードです:
public void trackLocation(){
if (ContextCompat.checkSelfPermission(activity.getApplicationContext(), Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
locationManager = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE);
boolean flag;
Boolean dlg;
flag = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
if (flag) {
Log.v("function", "onClick");
myLocationListener = new MyLocationListener();
dlg = true;
} else {
dlg = gpsDialog();
progressBar.setVisibility(View.GONE);
}
Log.d("maps", "Requesting location updates");
if(dlg) {
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, myLocationListener);
}
}
}
public class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
if (ActivityCompat.checkSelfPermission(MapsActivity.this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(MapsActivity.this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
return;
}
Log.d("maps", "on location changed : "+location.getLatitude() + "---"+ location.getLongitude());
locationManager.removeUpdates(myLocationListener);
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
Log.d("maps" , "Status Changed");
}
@Override
public void onProviderEnabled(String s) {
Log.d("maps" , "Provider Enabled");
}
@Override
public void onProviderDisabled(String s) {
Log.d("maps" , "Provider Disabled");
}
}
public Boolean gpsDialog(){
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setMessage("Do you want to start GPS?")
.setCancelable(false)
.setTitle("GPS DISABLED")
.setPositiveButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// finish the current activity
Intent myIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
activity.startActivity(myIntent);
dialog.cancel();
}
})
.setNegativeButton("No",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// cancel the dialog box
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
progressBar.setVisibility(View.GONE);
return false;
}
私は言ったように、私は以前にlastknownlocationを使用しました。それはいつも正しいとは言いませんが、私は同意しますが、毎回の精度が必要です –
@DeepakJoshi 1年前の 'Endomondo'では' LocationListener'を使って場所をフィルタリングするのに最も最適な方法です。 lastKnownLocationを使用しない場合は、私のコードでlastknowlocationのメソッドを削除してください。これはうまくいきます。 – W4R10CK
ありがとう、それは働いた、私は間違ったif自己申告の確認のための声明を書いた –