onLocationChanged从未在FusedLocationApi中调用

时间:2017-06-05 09:33:08

标签: android location fusedlocationproviderapi

关于同样的问题还有其他一些问题,但我猜这些答案有点旧,可能不适用于我的场景。在下面的代码中,永远不会调用方法onLocationChanged。我也尝试从android模拟器发送新的Locations,但它从未被调用过。知道这里出了什么问题吗?

public class MyActivity extends AppCompatActivity implements GoogleApiClient.ConnectionCallbacks, 
  GoogleApiClient.OnConnectionFailedListener, LocationListener {

    private GoogleApiClient apiClient;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.myview);

        apiClient = new GoogleApiClient.Builder(this)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .addApi(LocationServices.API)
                .build();

        apiClient.connect();
    }

    @Override
    public void onConnected(@Nullable Bundle bundle) {
        System.out.println("yeah, this works");

        // I also tried to set some properties on the location request like interval, etc. but they have no effect
        LocationRequest request = new LocationRequest();
        LocationServices.FusedLocationApi.requestLocationUpdates(apiClient, request, this);
    }

    @Override
    public void onConnectionSuspended(int i) {
        System.out.println("this is never shown");
    }

    @Override
    public void onConnectionFailed(@NonNull ConnectionResult connectionResult) {
        System.out.println("this is never shown");
    }

    @Override
    public void onLocationChanged(Location location) {
        System.out.println("this line is never called ");
    }
}

1 个答案:

答案 0 :(得分:0)

我发现我有关于“所有com.android.support库必须使用完全相同的版本规范”的gradle警告。在我的情况下,我改变了

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.google.android.gms:play-services:9.8.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:animated-vector-drawable:25.2.0'
compile 'com.android.support:support-core-ui:25.2.0'
compile 'com.android.support:mediarouter-v7:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services:9.8.0'

使用新的依赖项列表,gradle很高兴并且示例正常工作。希望这可以帮助别人。