我正在尝试使用Firebase
Cloud Messaging向我的Android应用发送命令,提示它确定当前的location
。这是在类FCMService
中完成的。
然后,类SingleShotLocationProvider
通过使用location
请求FusedLocationProviderClient
更新来执行实际的工作。但是,尽管授予了必要的fusedTrackerCallback
并且打开了permissions
,但从未调用过回调GPS
。为什么?
FCMService类
public class FCMService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d("FCMService", "Message received");
if(remoteMessage.getData().containsKey("command") && remoteMessage.getData().get("command").equalsIgnoreCase("locate")) {
// get current location
SingleShotLocationProvider locProv = new SingleShotLocationProvider(getApplicationContext());
locProv.requestSingleUpdate();
System.out.println("Requested single location update.");
}
}
}
}
SingleShotLocationProvider类
public class SingleShotLocationProvider {
private Context context;
final LocationManager locManager;
private FusedLocationProviderClient mFusedLocationClient;
private LocationCallback fusedTrackerCallback;
public SingleShotLocationProvider(Context context) {
this.context = context;
mFusedLocationClient = LocationServices.getFusedLocationProviderClient(context);
locManager = (LocationManager) context.getSystemService( Context.LOCATION_SERVICE );
if (locManager != null && !locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("SiSoLocProvider", "GPS IS NOT enabled.");
} else {
Log.d("SiSoLocProvider", "GPS is enabled.");
}
}
@TargetApi(16)
public void requestSingleUpdate() {
Looper.prepare();
// only works with SDK Version 23 or higher
if (android.os.Build.VERSION.SDK_INT >= 23) {
if (context.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED || context.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// permission is not granted
Log.e("SiSoLocProvider", "Permission not granted.");
return;
} else {
Log.d("SiSoLocProvider", "Permission granted.");
}
} else {
Log.d("SiSoLocProvider", "SDK < 23, checking permissions should not be necessary");
}
final long startTime = System.currentTimeMillis();
fusedTrackerCallback = new LocationCallback(){
@Override
public void onLocationResult(LocationResult locationResult) {
if((locationResult.getLastLocation() != null) && (System.currentTimeMillis() <= startTime+30*1000)) {
System.out.println("LOCATION: " + locationResult.getLastLocation().getLatitude() + "|" + locationResult.getLastLocation().getLongitude());
System.out.println("ACCURACY: " + locationResult.getLastLocation().getAccuracy());
mFusedLocationClient.removeLocationUpdates(fusedTrackerCallback);
} else {
System.out.println("LastKnownNull? :: " + (locationResult.getLastLocation() == null));
System.out.println("Time over? :: " + (System.currentTimeMillis() > startTime+30*1000));
}
}
};
LocationRequest req = new LocationRequest();
req.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
req.setFastestInterval(2000);
req.setInterval(2000);
mFusedLocationClient.requestLocationUpdates(req, fusedTrackerCallback, null);
}
}
输出为:
//Message received
//GPS is enabled.
//Permission granted.
//Requested single location update.
但是,仅此而已。为什么?可能是因为permission
是通过service application context
授予的吗?
答案 0 :(得分:2)
我猜您想从代码中获取位置并在后台线程中接收结果。这是一个解决方案。
@TargetApi(16)
public void requestSingleUpdate() {
// TODO: Comment-out this line.
// Looper.prepare();
// only works with SDK Version 23 or higher
if (android.os.Build.VERSION.SDK_INT >= 23) {
if (context.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED || context.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// permission is not granted
Log.e("SiSoLocProvider", "Permission not granted.");
return;
} else {
Log.d("SiSoLocProvider", "Permission granted.");
}
} else {
Log.d("SiSoLocProvider", "SDK < 23, checking permissions should not be necessary");
}
// TODO: Start a background thread to receive location result.
final HandlerThread handlerThread = new HandlerThread("RequestLocation");
handlerThread.start();
final long startTime = System.currentTimeMillis();
fusedTrackerCallback = new LocationCallback() {
@Override
public void onLocationResult(LocationResult locationResult) {
// TODO: Those lines of code will run on the background thread.
if ((locationResult.getLastLocation() != null) && (System.currentTimeMillis() <= startTime + 30 * 1000)) {
System.out.println("LOCATION: " + locationResult.getLastLocation().getLatitude() + "|" + locationResult.getLastLocation().getLongitude());
System.out.println("ACCURACY: " + locationResult.getLastLocation().getAccuracy());
mFusedLocationClient.removeLocationUpdates(fusedTrackerCallback);
} else {
System.out.println("LastKnownNull? :: " + (locationResult.getLastLocation() == null));
System.out.println("Time over? :: " + (System.currentTimeMillis() > startTime + 30 * 1000));
}
// TODO: After receiving location result, remove the listener.
mFusedLocationClient.removeLocationUpdates(this);
// Release the background thread which receive the location result.
handlerThread.quit();
}
};
LocationRequest req = new LocationRequest();
req.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
req.setFastestInterval(2000);
req.setInterval(2000);
// TODO: Pass looper of background thread indicates we want to receive location result in a background thread instead of UI thread.
mFusedLocationClient.requestLocationUpdates(req, fusedTrackerCallback, handlerThread.getLooper());
}
如果要在UI线程上接收定位结果。
@TargetApi(16)
public void requestSingleUpdate() {
// TODO: Comment-out this line.
// Looper.prepare();
// only works with SDK Version 23 or higher
if (android.os.Build.VERSION.SDK_INT >= 23) {
if (context.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED || context.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// permission is not granted
Log.e("SiSoLocProvider", "Permission not granted.");
return;
} else {
Log.d("SiSoLocProvider", "Permission granted.");
}
} else {
Log.d("SiSoLocProvider", "SDK < 23, checking permissions should not be necessary");
}
final long startTime = System.currentTimeMillis();
fusedTrackerCallback = new LocationCallback() {
@Override
public void onLocationResult(LocationResult locationResult) {
// TODO: These lines of code will run on UI thread.
if ((locationResult.getLastLocation() != null) && (System.currentTimeMillis() <= startTime + 30 * 1000)) {
System.out.println("LOCATION: " + locationResult.getLastLocation().getLatitude() + "|" + locationResult.getLastLocation().getLongitude());
System.out.println("ACCURACY: " + locationResult.getLastLocation().getAccuracy());
mFusedLocationClient.removeLocationUpdates(fusedTrackerCallback);
} else {
System.out.println("LastKnownNull? :: " + (locationResult.getLastLocation() == null));
System.out.println("Time over? :: " + (System.currentTimeMillis() > startTime + 30 * 1000));
}
// TODO: After receiving location result, remove the listener.
mFusedLocationClient.removeLocationUpdates(this);
}
};
LocationRequest req = new LocationRequest();
req.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
req.setFastestInterval(2000);
req.setInterval(2000);
// Receive location result on UI thread.
mFusedLocationClient.requestLocationUpdates(req, fusedTrackerCallback, Looper.getMainLooper());
}
我添加每个以TODO:
关键字开头的注释,以解释我的意图。